vue 设置埋点

vue单页应用添加百度统计

https://www.cnblogs.com/moqiutao/p/8471904.html

vue设置腾讯统计

router.afterEach((to, from, next) => {
  setTimeout(() => {
    var _mtac = {'senseQuery': 1};
    (function () {
      var mta = document.createElement('script')
      mta.src = '//pingjs.qq.com/h5/stats.js?v2.0.4'
      mta.setAttribute('name', 'MTAH5')
      mta.setAttribute('sid', '50064xxxx')
      mta.setAttribute('cid', '50064xxxx')
      var s = document.getElementsByTagName('script')[0]
      s.parentNode.insertBefore(mta, s)
    })()
    if (_mtac) {}
  }, 0)
})

 

转载于:https://www.cnblogs.com/ron123/p/9771937.html

你可能感兴趣的:(vue 设置埋点)