wanshenmean
13 小时以前 f288ccc545f8cc32bc922c96dfb3cab9a1f92ec6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import ElementPlus from 'element-plus';
import 'element-plus/dist/index.css';
import App from './App.vue';
import router from './router';
 
const app = createApp(App);
const pinia = createPinia();
 
app.use(pinia);
app.use(router);
app.use(ElementPlus);
 
app.mount('#app');