refactor(M08-D-R1): 后台改用权限路由与懒加载

This commit is contained in:
Codex
2026-08-10 20:57:30 +08:00
parent bb89061671
commit 3faf86872d
17 changed files with 1768 additions and 814 deletions
+2 -3
View File
@@ -1,7 +1,6 @@
import { createApp } from 'vue';
import ElementPlus from 'element-plus';
import 'element-plus/dist/index.css';
import './styles.css';
import App from './App.vue';
import { router } from './router';
createApp(App).use(ElementPlus).mount('#app');
createApp(App).use(router).mount('#app');