22 lines
477 B
JavaScript
22 lines
477 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import dataV from '@jiaminghi/data-view'
|
|
import router from "./router";
|
|
import ElementPlus from 'element-plus'
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
|
|
import {
|
|
createPinia
|
|
} from 'pinia'
|
|
import 'element-plus/dist/index.css'
|
|
|
|
import 'amfe-flexible'
|
|
const pinia = createPinia()
|
|
const app = createApp(App)
|
|
|
|
|
|
app.use(router)
|
|
app.use(dataV)
|
|
app.use(pinia)
|
|
app.use(ElementPlus)
|
|
app.mount('#app') |