update demo.

This commit is contained in:
chengpeiquan 2021-01-04 18:35:56 +08:00
parent 1126833f04
commit 91d323a89d

View File

@ -1,5 +1,5 @@
const { createRouter, createWebHashHistory } = VueRouter;
const { createApp } = Vue;
const { createApp, defineComponent, getCurrentInstance, ref } = Vue;
// 定义路由信息
const routes = [
@ -47,6 +47,42 @@ createApp({})
})
.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',