摘要: 注册全局自定义指令 `v-focus` Vue.directive('focus', { // 当被绑定的元素插入到 DOM 中时…… inserted: function (el) { // 聚焦元素 el.focus() }}) 注册局部指令(directives ) directives: { 阅读全文
posted @ 2020-12-03 12:04 病阳阳 阅读(38) 评论(0) 推荐(0)