inncom_list/src/main.js

10 lines
301 B
JavaScript
Raw Normal View History

2024-03-19 23:55:38 +08:00
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import router from './router'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
2024-03-20 16:42:11 +08:00
import { createPinia } from 'pinia'
2024-03-19 23:55:38 +08:00
2024-03-20 16:42:11 +08:00
createApp(App).use(router).use(ElementPlus).use(createPinia()).mount('#app')