首页 / 前端 / Vue.js / Vue中添加友盟代码统计
Vue中添加友盟代码统计
简单 Vue.js
1361浏览
2020-01-06 23:57:35

在入口App.vue中添加代码:

<script>
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])
      }
    }
  }
}
</script>
相关推荐