美文网首页工作生活
vue项目引入百度统计

vue项目引入百度统计

作者: TerdShow | 来源:发表于2019-07-02 11:14 被阅读0次

1.main.js引入

var _hmt = _hmt || [];
window._hmt = _hmt;
(function () {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?3adaf*******************079";
  var s = document.getElementsByTagName("script")[0];
  s.parentNode.insertBefore(hm, s);
})();

2.router.js使用

router.beforeEach((to, from, next) => {
  if (_hmt) {
    if (to.path) {
      _hmt.push(['_trackPageview', '/#' + to.fullPath]);
    }
  }
});

相关文章

网友评论

    本文标题:vue项目引入百度统计

    本文链接:https://www.haomeiwen.com/subject/lpfzcctx.html