一、在百度统计后台加入网站域名 m.yourdomain.com/yourproject/#/index

二、修改vue项目中的index.html文件

1、在中head域添加如下代码:

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<link href="./static/favicon.ico" rel="shortcut icon" type="image/x-icon">
<title></title>
<script>
    var _hmt = _hmt || [];
</script>
</head>

2、在body域加入:

<body>    
    <script>
        (function() {
            var hm = document.createElement('script');
            hm.src = 'https://hm.baidu.com/hm.js?23c7003auj3e6346c36bd4c7etg324e';
            var s = document.getElementsByTagName('script')[0];
            s.parentNode.insertBefore(hm, s);
        })();
    </script>
</body>

三、在main.js中,路由的钩子函数中加入:

router.beforeEach(function (to, from, next) {
    if (to.path) {
    _hmt.push(['_trackPageview', to.fullPath])
    }
    next();
    store.commit('updateLoadingStatus', {isLoading: true})
    next()
})

四、在vue文件中的使用

toLink(url){
	_hmt.push(['_trackPageview',  '/goodsoon.com/?userid=123456'])
	setTimeout(function () {
		location.href=url;
	},200)
},

欢迎扫码加友,交流各种技术问题。

 

Logo

前往低代码交流专区

更多推荐