sirc
2025-11-21 e3046b68a718eff882a8c4d89f1df18a07dd4a80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import './assets/main.css';
import './styles/tailwind.css';
 
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import * as ElementPlusIconsVue from '@element-plus/icons-vue';
 
import App from './App.vue';
import router from './router';
 
const app = createApp(App);
 
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  app.component(key, component);
}
 
app.use(createPinia());
app.use(router);
 
app.mount('#root');