feat: add initial project setup with Vue, Vite and Vuetify

This commit is contained in:
2025-03-26 01:12:35 +08:00
parent 01e7a57ed0
commit 361af96ba0
28 changed files with 8415 additions and 8 deletions

10
src/plugins/vuetify.js Normal file
View File

@@ -0,0 +1,10 @@
import { createVuetify } from 'vuetify'
import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
export default createVuetify({
components,
directives,
theme: {
defaultTheme: 'light'
}
})