chore: webui 前端模板

This commit is contained in:
RockChinQ
2024-10-11 22:23:08 +08:00
parent ea6a0af5a7
commit 21f153e5c3
20 changed files with 5156 additions and 0 deletions

20
web/src/main.js Normal file
View File

@@ -0,0 +1,20 @@
/**
* main.js
*
* Bootstraps Vuetify and other plugins then mounts the App`
*/
// Plugins
import { registerPlugins } from '@/plugins'
// Components
import App from './App.vue'
// Composables
import { createApp } from 'vue'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')