We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, simple question : How to disable vuetify components ?
Context: i want to disable Vuetify VDatePicker cause i want to use vcalendar.io ans there is a conflict.
I try to put the only components i want in my vuetify.config.ts, but not works, composants who are not in this list still display in my views.
vuetify.config.ts
import { defineVuetifyConfiguration } from 'vuetify-nuxt-module/custom-configuration' export default defineVuetifyConfiguration({ components: [ 'VApp', 'VAppBar', 'VAppBarNavIcon', 'VBtn', 'VCard', 'VCardActions', 'VCardText', 'VCardTitle', 'VContainer', ], theme: { themes: { light: { dark: false, colors: { primary: '#212D39', // Bleu foncé secondary: '#1BA6B3', // Bleu success: '#0AAC6C', // Vert warning: '#FC6E21', // Orange surface: '#F3F3F3', // Gris clair error: '#FF005B', // Rose yellow: '#EBAF3C', // Jaune red: '#FF4136', // Rouge gold: '#DAA520', // Or gray: '#DCDCDC', // Gris clair } }, }, }, })
Thks
The text was updated successfully, but these errors were encountered:
Uhhhm, so VCalendar/VDatePicker... being resolved by vite vuetify plugin (?), you can:
components:extend
nuxt-module/src/utils/configure-nuxt.ts
Line 63 in bfc472d
imports
If you provide a minimal reproduction I can check it later
Sorry, something went wrong.
No branches or pull requests
Hello, simple question : How to disable vuetify components ?
Context: i want to disable Vuetify VDatePicker cause i want to use vcalendar.io ans there is a conflict.
I try to put the only components i want in my
vuetify.config.ts
, but not works, composants who are not in this list still display in my views.Thks
The text was updated successfully, but these errors were encountered: