Vue中自定义指令 自动获焦

       <input type="text" placeholder="请输入内容" v-model='msg' v-focus>
        //局部自定义指令
        directives: {
            focus:{
                inserted(el,binding){
                    el.focus();
                }
            }
        }

代码虽短都是精髓,希望可以帮到大家!

你可能感兴趣的:(vue.js,自定义指令,inserted)