scaffold the vue client app

This commit is contained in:
2026-02-27 19:58:09 -06:00
parent 5d35e5d552
commit 9d7a443b7c
16 changed files with 3441 additions and 0 deletions

9
client/src/main.ts Normal file
View File

@@ -0,0 +1,9 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(router)
app.mount('#app')