Joaquín Sánchez
Joaquín Sánchez
ok, please apply my suggestion in the plugin, you're breaking the breakpoins: https://github.com/vuetifyjs/vuetify/blob/f8105c2902bc5ca57c92f8f2898c62a6d5fa001e/packages/vuetify/src/composables/display.ts#L170-L175 EDIT: remove also the `useIsMobile` function and use `useVDisplay().mobile`
you can try both approach, vuetify will merge it, but yeah, that's also fine
still there, mobile breakpoint changed but server sending wrong html
can you initialize drawer properly in layout.vue? ```vue ... const { navbar } = useAppConfig().app const isMobile = useIsMobile() const drawer = ref(isMobile.value) watch(() => !isMobile.value, () => { drawer.value...
upps, I read `v-if="drawer"`...
I'm going to prepare a reproduction with minimal configuration... do you have a discord account?
check nuxt channel in vuetify discord server: https://discord.com/channels/340160225338195969/1198016523873308745
@nabeel-nexttier You should move a few things to `vuetifyOptions` (Nuxt or Vuetify config file): - replace `aliases` with `aliases: { IconBtn: 'VBtn' }`: don't import the `VBtn`, just add the...
You're registering the Vuetify plugin twice, replace your Nuxt plugin with this one: ```ts import defaults from './vuetify/defaults' import { icons } from './vuetify/icons' import theme from './vuetify/theme' export default...
can you try adding empty `defaults`? `vuetifyOptions.defaults = vuetifyOptions.defaults ?? {}`, it seems a bug (vuetify, the module or both) EDIT: file a new issue for this :pray: