tradeScreen/src/main.js

21 lines
457 B
JavaScript
Raw Normal View History

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'
import {
createPinia
} from 'pinia'
import 'element-plus/dist/index.css'
2023-12-07 19:05:27 +08:00
// import '@/components/townDetail/test.js'
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-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')