vue单页面使用友盟统计

注:由于我的项目是多次进入首页带参数不一致,所有只统计不带参数的进入的次数
1.index.html里面的head里面


    
  1. 在app.vue里面监控route
 watch: {
    '$route' () {
      if (_czc) {
        let location = window.location;
        let hash =location.hash.split('?')[0];
        let contentUrl = location.pathname + hash;
        let refererUrl = '/';
        _czc.push(["_setAutoPageview",false]);
        _czc.push(['_trackPageview', contentUrl, refererUrl]);
        console.log(_czc);
      }else{
        console.log('没进来');
      }
    }
  },

你可能感兴趣的:(vue)