2024-01-07 18:14:35 +08:00
|
|
|
import './assets/main.css'
|
|
|
|
|
|
|
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
|
import 'element-plus/dist/index.css'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import router from '@/router'
|
2024-01-09 15:40:09 +08:00
|
|
|
import globalData from '@/utils/global.js'
|
2024-01-07 18:14:35 +08:00
|
|
|
|
|
|
|
|
|
2024-01-09 15:40:09 +08:00
|
|
|
const app=createApp(App);
|
|
|
|
|
app.provide('globalData',globalData);
|
|
|
|
|
app.use(router).use(ElementPlus).mount('#app');
|