This commit is contained in:
lizhuang
2023-04-04 17:56:44 +08:00
parent 6a3fa25b7d
commit 46025f6011
93 changed files with 8110 additions and 0 deletions

20
client/src/main.ts Normal file
View File

@@ -0,0 +1,20 @@
import {createApp} from 'vue'
import './style.css'
import App from './App.vue'
import { router} from "./router/router";
// 引入elementPlus
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
const app = createApp(App)
app.use(ElementPlus)
// 引入路由
app.use(router)
app.mount('#app')