1:首先在官方地址申请appID:http://doc.talkingdata.com/
2:在vue的index.html引入sdk
<script src="http://sdk.talkingdata.com/app/h5/v1?appid=appid&vn=name&vc=1.0.1"></script>
3:定义一个埋点函数
// talkingData统计平台埋点 function setSpot (sendMsg, logMsg) { try { console.log(logMsg) window.TDAPP.onEvent(sendMsg) return true } catch (err) { console.log(logMsg + '=>err', err) return false } }
4:在需要统计的页面引入
created() { unit.setSpot('在提取码输入页:index','index=> I am counting!') },