mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-06 03:58:00 +08:00
update demo.
This commit is contained in:
parent
1126833f04
commit
91d323a89d
@ -1,5 +1,5 @@
|
|||||||
const { createRouter, createWebHashHistory } = VueRouter;
|
const { createRouter, createWebHashHistory } = VueRouter;
|
||||||
const { createApp } = Vue;
|
const { createApp, defineComponent, getCurrentInstance, ref } = Vue;
|
||||||
|
|
||||||
// 定义路由信息
|
// 定义路由信息
|
||||||
const routes = [
|
const routes = [
|
||||||
@ -47,6 +47,42 @@ createApp({})
|
|||||||
})
|
})
|
||||||
.mount('#app');
|
.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
|
// // 初始化Vue
|
||||||
// const app = new Vue({
|
// const app = new Vue({
|
||||||
// el: '#app',
|
// el: '#app',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user