1
0
forked from lxh/go-wxhelper
go-wxhelper/frontend/src/main.ts
2024-07-04 14:58:12 +08:00

13 lines
214 B
TypeScript

import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')