初始化

This commit is contained in:
2025-10-03 22:30:54 +08:00
commit c4b3ed5e97
20 changed files with 4321 additions and 0 deletions

7
management/src/main.ts Normal file
View File

@@ -0,0 +1,7 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
createApp(App).use(router).use(ElementPlus).mount('#app')