8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
|
|
// plugins/vuetify-date-input.client.ts
|
||
|
|
import { VDateInput } from 'vuetify/labs/VDateInput'
|
||
|
|
|
||
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
||
|
|
// Register VDateInput from Vuetify Labs
|
||
|
|
nuxtApp.vueApp.component('VDateInput', VDateInput)
|
||
|
|
})
|