diff --git a/demo/js/main-for-vue3.js b/demo/js/main-for-vue3.js index 643f328..a1d32ba 100644 --- a/demo/js/main-for-vue3.js +++ b/demo/js/main-for-vue3.js @@ -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',