// 定义路由信息 const routes = [ { path: '/', redirect: '/page1' }, { path: '/page1', component: { template: '
当前是 Page1 的路由
' } }, { path: '/page2', component: { template: '
当前是 Page2 的路由
' } }, { path: '/page3', component: { template: '
当前是 Page3 的路由
' } } ]; // 初始化路由 const router = new VueRouter({ routes, linkActiveClass: 'cur', linkExactActiveClass: 'cur' }); // 引入统计插件 Vue.use(baiduAnalytics, { router: router, siteIdList: [ 'aaaaaaaaaaaaaaaaaaa', 'bbbbbbbbbbbbbbbbbbb', 'ccccccccccccccccccc' ], isDebug: true }); console.log('baiduAnalytics', baiduAnalytics); // 初始化Vue const app = new Vue({ el: '#app', router, data () { return { pageUrl: '', category: '', action: '', label: '', value: '' } }, mounted () { }, methods: { pv () { // this.$pushBAIDU.pv(this.pageUrl); console.log(baiduAnalytics.pushBAIDU); }, event () { this.$pushBAIDU.event(this.category, this.action, this.label, this.value); } } });