feat: project init

This commit is contained in:
skytek_xinliang
2026-03-26 10:08:35 +08:00
commit 507afcc99c
36 changed files with 4430 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/**
* main.ts
*
* Bootstraps Vuetify and other plugins then mounts the App`
*/
// Composables
import { createApp } from 'vue'
// Plugins
import { registerPlugins } from '@/plugins'
// Components
import App from './App.vue'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')