vuetify-nuxt-module: [Bug]: Date adapter locale not used
When using Vuetify directly, the following configuration works to get a DateAdapter with a default locale (see playground):
import { createVuetify } from 'vuetify'
import { nl } from 'date-fns/locale'
import DateFnsAdapter from '@date-io/date-fns'
export const vuetify = createVuetify({
date: {
adapter: new DateFnsAdapter({ locale: nl }),
},
})
When I try to accomplish the same with vuetify-nuxt-module I get a 500 error (see reproduction)
Related
About this issue
- Original URL
- State: closed
- Created 7 months ago
- Comments: 21 (11 by maintainers)
@mtdvlpr should be fixed in
v0.7.3@userquin vuetify is working. See my earlier comments.