const { createRouter, createWebHashHistory } = VueRouter; const { createApp, defineComponent, getCurrentInstance, ref } = Vue; // 定义路由信息 const routes = [ { path: '/', redirect: '/page1' }, { path: '/page1', component: { template: '
当前是 Page1 的路由
' } }, { path: '/page2', component: { template: '
当前是 Page2 的路由
' } }, { path: '/page3', component: { template: '
当前是 Page3 的路由
' } } ]; // 初始化路由 const router = createRouter({ history: createWebHashHistory(), routes, linkActiveClass: 'cur', linkExactActiveClass: 'cur' }); // 初始化Vue createApp({}) .use(router) .use(baiduAnalytics, { router: router, siteIdList: [ '8dca8e2532df48ea7f1b15c714588691' ], isDebug: true }) .mount('#app'); const app = defineComponent({ setup () { // 数据 const pageUrl = ref(''); const category = ref(''); const action = ref(''); const label = ref(''); const value = ref(''); const { proxy } = getCurrentInstance(); console.log('setup'); console.log(pageUrl); const pv = () => { pushBAIDU.pv('/') } const pv2 = () => { proxy.$pushBAIDU.pv('/2'); } return { // 数据 pageUrl, category, action, label, value, // 方法 pv, pv2 } } }) // // 初始化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); // } // } // });