giovaparty
giovaparty
NNovu
Created by giovaparty on 10/3/2023 in #💬│support
Conflicts with Vuetify
SOLUTION: import * as allComponents from 'vuetify/components'; const components = {...allComponents}; // allComponents is read-only delete components.VTooltip; delete components.VMenu; import { VTooltip as VuetifyTooltip, VMenu as VuetifyMenu } from 'vuetify/components'; components.VuetifyTooltip = VuetifyTooltip; components.VuetifyMenu = VuetifyMenu; import * as directives from 'vuetify/directives'; const vuetify = createVuetify({ components, directives, iconfont: 'mdi' }); I renamed the Vuetify Components, now Novu is working! Thanks @Pawan Jain !
7 replies