vue.directive('log', {
bind( el, binding ){
el.addEventListener('click', ()=>{
Axios.post //发送请求
})
}
})
caption表示埋点的模块
paras表示用户的行为
<button v-log="{caption:'登录页', paras: '用户点击验证码发送'}">发送验证码</button>
vue.directive('log', {
bind( el, binding ){
el.addEventListener('click', ()=>{
Axios.post //发送请求
})
}
})
caption表示埋点的模块
paras表示用户的行为
<button v-log="{caption:'登录页', paras: '用户点击验证码发送'}">发送验证码</button>
本文标题:vue项目声明式埋点--自定义指令
本文链接:https://www.haomeiwen.com/subject/krqeoltx.html
网友评论