2021-01-04 18:02:13 +08:00

71 lines
1.3 KiB
JavaScript

// 定义路由信息
const routes = [
{
path: '/',
redirect: '/page1'
},
{
path: '/page1',
component: {
template: '<div class="view">当前是 <strong>Page1</strong> 的路由</div>'
}
},
{
path: '/page2',
component: {
template: '<div class="view">当前是 <strong>Page2</strong> 的路由</div>'
}
},
{
path: '/page3',
component: {
template: '<div class="view">当前是 <strong>Page3</strong> 的路由</div>'
}
}
];
// 初始化路由
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);
}
}
});