2023-11-22 15:12:56 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
2023-11-23 19:39:47 +08:00
|
|
|
import dataV from '@jiaminghi/data-view'
|
2023-11-22 18:30:06 +08:00
|
|
|
import router from "./router";
|
2023-12-08 18:51:02 +08:00
|
|
|
import ElementPlus from 'element-plus'
|
2023-12-11 18:35:55 +08:00
|
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
2023-12-18 18:49:23 +08:00
|
|
|
|
2023-12-08 18:51:02 +08:00
|
|
|
import {
|
|
|
|
createPinia
|
|
|
|
} from 'pinia'
|
|
|
|
import 'element-plus/dist/index.css'
|
2023-12-07 19:05:27 +08:00
|
|
|
|
|
|
|
import 'amfe-flexible'
|
2023-12-08 18:51:02 +08:00
|
|
|
const pinia = createPinia()
|
2023-12-07 19:05:27 +08:00
|
|
|
const app = createApp(App)
|
2023-12-11 22:33:50 +08:00
|
|
|
|
|
|
|
|
2023-11-22 18:30:06 +08:00
|
|
|
app.use(router)
|
2023-11-23 19:39:47 +08:00
|
|
|
app.use(dataV)
|
2023-12-08 18:51:02 +08:00
|
|
|
app.use(pinia)
|
|
|
|
app.use(ElementPlus)
|
2023-11-22 18:30:06 +08:00
|
|
|
app.mount('#app')
|