2023-12-30 17:40:20 +08:00
|
|
|
import './assets/main.css'
|
|
|
|
|
|
|
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import router from './router'
|
|
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
|
import 'element-plus/dist/index.css'
|
|
|
|
|
// import './assets/styles/global.css'
|
|
|
|
|
import pinia from './store';
|
2024-01-25 11:38:45 +08:00
|
|
|
import echarts from "./echarts";
|
2023-12-30 17:40:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
const app = createApp(App)
|
|
|
|
|
app.use(router)
|
|
|
|
|
app.use(ElementPlus)
|
|
|
|
|
app.use(pinia);
|
|
|
|
|
|
2024-01-25 11:38:45 +08:00
|
|
|
app.provide('$echarts', echarts);
|
2023-12-30 17:40:20 +08:00
|
|
|
|
|
|
|
|
app.mount('#app')
|
|
|
|
|
|
|
|
|
|
|