码迷,mamicode.com
首页 > 其他好文 > 详细

vue自定义指令 调用函数传参

时间:2021-06-10 17:34:26      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:hat   pre   dir   OLE   rect   rgb   method   传参   ons   

<div v-mydirect:fn="item"></div>
Vue.directive(‘mydirect‘, {
    bind (el, binding,vnode) {
        let that = vnode.context
        that[binding.arg](binding.value)
    }
})
methods:{
fn(item){
  console.log(item)
}

}

 

vue自定义指令 调用函数传参

标签:hat   pre   dir   OLE   rect   rgb   method   传参   ons   

原文地址:https://www.cnblogs.com/wang-xx/p/14866949.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!