vue单页面之友盟代码统计
作者:
you_322f | 来源:发表于
2018-09-17 12:04 被阅读0次
vue单页面之友盟代码统计
export default {
name: 'app',
mounted () {
const script = document.createElement('script')
script.src = 'https://s95.cnzz.com/z_stat.php?id=1111111111&web_id=1111111111'
script.language = 'JavaScript'
document.body.appendChild(script)
},
watch: {
'$route' () {
if (window._czc) {
let location = window.location
let contentUrl = location.pathname + location.hash
let refererUrl = '/'
window._czc.push(['_trackPageview', contentUrl, refererUrl])
}
}
}
}
本文标题:vue单页面之友盟代码统计
本文链接:https://www.haomeiwen.com/subject/cnnknftx.html
网友评论