I'm currently working on an app that utilizes Vue and Vuetify with Web components. However, after adding Vuetify as a web component, I noticed that the CSS styles from Vuetify are no longer visible. I attempted to include
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.min.css">
in the demo.html file, but this did not resolve the issue. You can find my repository at vuetify as web component.
I have also added transpileDependencies: [ 'vuetify' ]
to my vue.config.js, however, this has not fixed the problem either.
It's important to note that the Vuetify styles are still not functioning properly.
I have explored the following resources:
- v-aoutocomplete not working with wc
- Vuetify: external page CSS breaks Vuetify's component style
- Custom Web Component image not showing
The steps taken and various options I've tried are outlined in the readme.MD file of my repository. Any guidance on how to successfully include Vuetify styles in a Web Component would be greatly appreciated.