Showing
4 changed files
with
4 additions
and
4 deletions
dist.zip
0 → 100644
No preview for this file type
| ... | ... | @@ -11,8 +11,8 @@ |
| 11 | 11 | <title id="app-title"></title> |
| 12 | 12 | <script type="module"> |
| 13 | 13 | document.addEventListener('DOMContentLoaded', function () { |
| 14 | - document.querySelector('#app-title').innerHTML = import.meta.env.VITE_APP_TITLE; | |
| 15 | - console.log(import.meta.env.VITE_APP_TITLE) | |
| 14 | + document.querySelector('#app-title').innerHTML = import.meta.env.VITE_APP_TITLE + '管理'; | |
| 15 | + console.log(import.meta.env.VITE_APP_TITLE + '管理') | |
| 16 | 16 | }); |
| 17 | 17 | </script> |
| 18 | 18 | <style> | ... | ... |
| ... | ... | @@ -58,7 +58,7 @@ useResponsive(true) |
| 58 | 58 | const navbarHeight = `45px` |
| 59 | 59 | const navbar = computed(() => appStore.navbar) |
| 60 | 60 | const fatherMenu = computed(() => appStore.appAsyncFatherMenu) |
| 61 | -const title = import.meta.env.VITE_APP_TITLE; | |
| 61 | +const title = import.meta.env.VITE_APP_TITLE + '管理'; | |
| 62 | 62 | // const fatherMenu = ref<any>([]); |
| 63 | 63 | // const menu = async () => { |
| 64 | 64 | // // await appStore.fetchFatherMenuConfig(); | ... | ... |