This commit is contained in:
2025-12-29 07:06:53 -08:00
commit cffb51b58c
48 changed files with 4764 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import './styles/index.css'
const app = createApp(App)
app.use(router)
app.mount('#app')