Add cnzz statistics to the vue project

Add in App.vue:

export default {
    
    
  name: 'App',
  mounted() {
    
      
     // 创建cnzz统计js
    const script = document.createElement('script')
    script.src = 'https://v1.cnzz.com/z_stat.php?id=1111111111&web_id=1111111111'
    script.language = 'JavaScript'
    document.body.appendChild(script)
  },
  watch: {
    
    
    '$route': {
    
    
      handler(to, from) {
    
    
        setTimeout(() => {
    
     //避免首次获取不到window._czc
          if (window._czc) {
    
    
            let location = window.location;
            let contentUrl = location.pathname + location.hash;
            let refererUrl = '/';
            // 用于发送某个URL的PV统计请求,
            window._czc.push(['_trackPageview', contentUrl, refererUrl])
            window._czc.push(["_setAutoPageview", false]);
          }
        }, 300)
      },
      immediate: true  // 首次进入页面即执行
    }
  }
}

View 1000+ front-end interviews for free

Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_42981560/article/details/112628808