Nuxt cliet service

This commit is contained in:
2025-09-23 18:47:16 +07:00
parent 6f1deec639
commit 3b98f25e43
63 changed files with 6584 additions and 5493 deletions

View File

@@ -0,0 +1,15 @@
import { createVuetify } from 'vuetify'
import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
export default defineNuxtPlugin((nuxtApp) => {
const vuetify = createVuetify({
components,
directives,
theme: {
defaultTheme: 'light'
}
})
nuxtApp.vueApp.use(vuetify)
})