whychdw
2024-12-02 ec054b1f37e4863074069fe686d82e20c435f9c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
 
import "@/styles/index.scss";
import App from './App.vue'
import router from './router'
 
const app = createApp(App)
 
app.use(createPinia())
app.use(router)
app.use(ElementPlus)
 
app.mount('#app')