20 lines
465 B
JavaScript
Raw Normal View History

2025-10-15 14:07:39 +08:00
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import router from './router'
import App from './App.vue'
import './styles/index.scss'
2025-10-30 15:34:23 +08:00
import ElementPlus from 'element-plus'
2025-11-04 11:31:00 +08:00
import zhCn from 'element-plus/es/locale/lang/zh-cn'
import 'cesium/Build/Cesium/Widgets/widgets.css'
import 'virtual:svg-icons-register'
2025-10-15 14:07:39 +08:00
const app = createApp(App)
app.use(createPinia())
2025-11-04 11:31:00 +08:00
app.use(ElementPlus, {
locale: zhCn,
})
2025-10-15 14:07:39 +08:00
app.use(router)
app.mount('#app')