mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-04 22:41:24 +08:00
16 lines
392 B
TypeScript
16 lines
392 B
TypeScript
import { createApp } from 'vue'
|
|
import App from '@/App.vue'
|
|
import router from '@/router'
|
|
|
|
import '@/assets/css/base.css'
|
|
import '@/assets/css/common.css'
|
|
|
|
import 'element-plus/theme-chalk/el-message.css'
|
|
import 'element-plus/theme-chalk/el-message-box.css'
|
|
import { createPinia } from 'pinia'
|
|
|
|
const app = createApp(App)
|
|
const pinia = createPinia()
|
|
|
|
app.use(router).use(pinia).mount('#app')
|