22 lines
569 B
TypeScript
Executable File
22 lines
569 B
TypeScript
Executable File
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import ECharts from 'vue-echarts'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import './styles/smallDog.css'
|
|
import './styles/main.css'
|
|
import 'uno.css'
|
|
import 'animate.css' // https://animate.style/
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
|
|
const app = createApp(App)
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component)
|
|
}
|
|
app.component('VChart', ECharts)
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|