自定义指令
// 自定义指令
Vue.directive('focus',{
bind(el,binding){
console.log(el,binding,'---------')
},
inserted(el){
el.focus()
console.log(el,'++++++++')
}
})
Vue.component('ComponentA',{
template:'<div><input type="text" v-focus /></div>'
})
var vm = new Vue({
el:"#app",
data:{
msg:'sxq'
},
template:'<div><ComponentA></ComponentA></div>'
})
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。