gohttpdUi/src/main.ts

13 lines
230 B
TypeScript
Raw Normal View History

2021-12-14 17:42:43 +08:00
// 引入windi css
import '@/plugins/windicss'
2021-12-15 17:16:53 +08:00
2021-10-10 09:59:52 +08:00
import { createApp } from 'vue'
import App from './App.vue'
2021-12-08 10:47:33 +08:00
const app = createApp(App)
2021-12-15 17:16:53 +08:00
// 引入状态管理
import { setupStore } from '@/store'
2021-12-14 21:27:43 +08:00
setupStore(app)
app.mount('#app')