Vue基础之自定义指令

 1 <!-- 自定义指令 -->
 2 <input type="text" class="form-control" v-model="keywords" v-focus>
 3 
 4 //定义全局指令
 5 
 6         Vue.directive('focus',{
 7             bind:function(el){
 8                 
 9             },
10             inserted:function(el){
11                 el.focus()//可以使用Dom方法
12             },
13             update:function(){}
14         })

 

posted @ 2020-04-03 12:30  peterWXM  阅读(134)  评论(0编辑  收藏  举报