vuejs2 directive

来源:互联网 发布:高频关键词共现矩阵 编辑:程序博客网 时间:2024/05/20 11:46

v-myOn:click="show"

directives: {

myOn: {

bind(el, binding, vnode) {

const event = binding.arg;

const fn = binding.value;

el.addEventListener(event, fn);

}

}

}

methods: {

show() {

//具体操作

}

}

0 0
原创粉丝点击