22 lines
502 B
TypeScript
22 lines
502 B
TypeScript
import './assets/main.css'
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
|
|
import { createApp } from 'vue'
|
|
// import { createPinia } from 'pinia'
|
|
|
|
import App from './App.vue'
|
|
import pinia from "./store"
|
|
import router from './router'
|
|
import 'element-plus/dist/index.css'
|
|
import './style/css/reset.css'
|
|
|
|
const app = createApp(App)
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component)
|
|
}
|
|
|
|
|
|
app.use(pinia)
|
|
app.use(router)
|
|
app.mount('#app')
|