feat: 首次提交,添加Web界面和Redis支持的数据管理系统
This commit is contained in:
15
web/src/main.ts
Normal file
15
web/src/main.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import {createApp} from 'vue'
|
||||
import {createPinia} from 'pinia'
|
||||
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import ElementPlus from 'element-plus'
|
||||
import 'element-plus/dist/index.css'
|
||||
|
||||
const app = createApp(App)
|
||||
|
||||
app.use(createPinia())
|
||||
app.use(router)
|
||||
app.use(ElementPlus)
|
||||
|
||||
app.mount('#app')
|
Reference in New Issue
Block a user