文档:https://cn.vuejs.org/v2/guide/custom-directive.html
Vue.directive('focus', {
// 当被绑定的元素插入到 DOM 中时……
inserted: function (el) {
// 聚焦元素
el.focus()
}
})
文档:https://cn.vuejs.org/v2/guide/custom-directive.html
Vue.directive('focus', {
// 当被绑定的元素插入到 DOM 中时……
inserted: function (el) {
// 聚焦元素
el.focus()
}
})
本文标题:vue指令:自定义指令
本文链接:https://www.haomeiwen.com/subject/plrfxctx.html
网友评论