Currently within my VueJS app, I am utilizing Vuetify and V-Calendar which both offer a component known as v-date-picker
. My challenge arises when trying to use these components in different locations, as the same component is displayed everywhere due to their identical names.
I have attempted to resolve this name conflict by using an alias for the component, but unfortunately, this approach did not work. Is there another method that could potentially solve this issue?
Overall, how can conflicts like this be resolved when two modules export components with the same name?