Get Patient & Websocket

This commit is contained in:
2026-01-07 12:43:37 +07:00
parent 3249765aa8
commit 8b6b74cf1b
41 changed files with 25702 additions and 1556 deletions

No files matched your search

+15
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)
})