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

15
web/src/plugins/index.js Normal file
View File

@@ -0,0 +1,15 @@
/**
* plugins/index.js
*
* Automatically included in `./src/main.js`
*/
// Plugins
import vuetify from './vuetify'
import router from '@/router'
export function registerPlugins (app) {
app
.use(vuetify)
.use(router)
}