I've integrated the Vuetify rating component into my app (https://vuetifyjs.com/en/components/ratings#ratings), but I'm facing an issue. Despite having Vuetify 1.5.5 installed and working with other components like buttons, the stars in the rating component are not being displayed, only the text appears.
Does anyone have any suggestions on how to resolve this? I couldn't find any helpful information online. Alternatively, if someone could recommend a different Vue rating component that is stable, that would be great too.
This is the section of code where I am using the rating:
<div>
<span class="headerText">Dataset Product</span>
<span class="headerDesc">Short description</span>
<span class="headerDesc">@georgeBush.</span>
<v-rating v-model="rating"></v-rating>
</div>
Here is my main.js file which includes the import for Vuetify CSS:
import Vuetify from 'vuetify'
import 'vuetify/dist/vuetify.min.css'
I have also attached a screenshot showing how the rating component was rendered without the stars: