Whenever I attempt to import specific Vuetify components, the base style of the component is not imported along with it.
Below is the code of my parent component where I am importing components from Vuetify:
- Webpack: 5
- Vuetify Version: 2.6.6
- VueJS Version: 2
import {
VBtn,
VIcon,
VTooltip,
} from 'vuetify/lib'
export default {
name: 'Project',
components: {
VBtn,
VIcon,
VTooltip,
},
}