Hi, DataPicker component collides with component with same name from Vuetify library.
Can you please add the 'componentPrefix' option to make this component unique?
Best regards
Karel
Any progress?
You can pass componentPrefix as an option when using VCalendar.
Vue.use(VCalendar, {
componentPrefix: 'vc'
})
Then when using in template
<template>
<vc-calendar>
</vc-calendar>
</template>
Saved my day!! https://github.com/nathanreyes/v-calendar/issues/442
Hello @nathanreyes @VishalGulati
Even by adding componentPrefix, I am still facing a problem. The v-calendar date picker is always taking precedence over the Vuetity one. Any idea why?
The moment I remove the import VCalendar from 'v-calendar'; the Vuetify calendar works again.
Most helpful comment
You can pass
componentPrefixas an option when using VCalendar.Then when using in template