2020年7月14日

摘要: VUE-指令创建局部指令 new Vue({ el: '#app', directives: { focus: {// 指令名 inserted: function (el, binding) {// 指令触发方式 el.focus()// 动做 } } } })创建全局指令 Vue.directi 阅读全文
posted @ 2020-07-14 17:23 xcc_20190625 阅读(193) 评论(0) 推荐(0)

导航