diff --git a/static/app.js b/static/app.js index 079dfb0ce..327c7b4cf 100644 --- a/static/app.js +++ b/static/app.js @@ -27,26 +27,23 @@ const loadVueFile = (vuePath) => () => loadVue(vuePath); const router = VueRouter.createRouter({ - routes: [], - history: VueRouter.createWebHashHistory(), + routes: [], history: VueRouter.createWebHashHistory(), }); router.beforeEach(function (to, fr, next) { let page = to.fullPath; - if (to.fullPath === '/') { page = './static/template/pages/one.vue'; } page = page.replace(/-/g, '/'); - console.log('before', page) - const name = page.replace(/[.\/]+/g, '_'); if (router.hasRoute(name)) { next(); } else { router.addRoute({name: name, path: to.fullPath, component: loadVueFile(page)}); + // component: Vue.defineAsyncComponent(() => loadVue(page)) next({name: name}); } }); @@ -58,12 +55,15 @@ } }); - window.$think = Vue.createApp({ - name: 'ThinkAdmin', - components: { - layout: await loadVue('./static/template/layout.vue'), - } - }); + // window.$think = Vue.createApp({ + // // name: 'ThinkAdmin', + // components: { + // layout: await loadVue('./static/template/layout.vue'), + // } + // }); + + window.$think = Vue.createApp(Vue.defineAsyncComponent(() => loadVue('./static/template/layout.vue'))); + // 全局字体文件 // const icons = await loadVue("https://unpkg.com/@element-plus/icons@0.0.11/lib/index.js"); diff --git a/static/template/pages/one.vue b/static/template/pages/one.vue index 372a20794..2836e518e 100644 --- a/static/template/pages/one.vue +++ b/static/template/pages/one.vue @@ -2,7 +2,7 @@ - 页面标题 - 导航条 - ONE-PAGE + Item-One-Page 功能按钮1 功能按钮2 diff --git a/static/template/pages/thr.vue b/static/template/pages/thr.vue index a7ce402e8..f704c4e36 100644 --- a/static/template/pages/thr.vue +++ b/static/template/pages/thr.vue @@ -2,7 +2,7 @@ - 页面标题 - 导航条 - Three-PAGE + Item-Three-Page 功能按钮1 功能按钮2 diff --git a/static/template/pages/two.vue b/static/template/pages/two.vue index f40508a3b..27a3bcf1f 100644 --- a/static/template/pages/two.vue +++ b/static/template/pages/two.vue @@ -2,7 +2,7 @@ - 页面标题 - 导航条 - TWO-PAGE + Item-Two-Page 功能按钮1 功能按钮2