mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-05 19:41:42 +08:00
56 lines
815 B
JavaScript
56 lines
815 B
JavaScript
/**
|
|
* 初始化路由
|
|
* routes是来自 js/routes.js 里面的配置
|
|
*/
|
|
const router = new VueRouter({
|
|
routes,
|
|
linkActiveClass: 'cur',
|
|
linkExactActiveClass: 'cur'
|
|
});
|
|
|
|
|
|
/**
|
|
* 引入统计插件
|
|
*/
|
|
Vue.use(baiduAnalytics, {
|
|
router: router,
|
|
siteIdList: [
|
|
'aaaaaaaaaaaaaaaaaaa',
|
|
'bbbbbbbbbbbbbbbbbbb',
|
|
'ccccccccccccccccccc'
|
|
],
|
|
isDebug: true
|
|
});
|
|
|
|
|
|
/**
|
|
* 初始化Vue
|
|
*/
|
|
const app = new Vue({
|
|
el: '#app',
|
|
router,
|
|
data () {
|
|
return {
|
|
pageUrl: '',
|
|
category: '',
|
|
action: '',
|
|
label: '',
|
|
value: ''
|
|
}
|
|
},
|
|
mounted () {
|
|
},
|
|
methods: {
|
|
pv () {
|
|
this.$pushBAIDU.pv(this.pageUrl);
|
|
},
|
|
event () {
|
|
this.$pushBAIDU.event(
|
|
this.category,
|
|
this.action,
|
|
this.label,
|
|
this.value
|
|
);
|
|
}
|
|
}
|
|
}); |