时间比较紧迫,匆忙写下...
比如现在记录点击按钮的次数
main.js中自定义埋点方法
Vue.directive('point', { bind(el, binding) { el.addEventListener('click', ()=>{ console.log(el, binding) // 这里写操作埋点的时候需要做的事情,比如调接口
}) } })
使用:
<el-button v-point="{ option:'确认', paras: '4543' }" >确认</el-button>
标签:el,vue,自定义,point,binding,埋点,数据 From: https://www.cnblogs.com/shiyiersan/p/17389715.html