I am trying to use Vuetify rating component in my app (https://vuetifyjs.com/en/components/ratings#ratings). I have Vuetify 1.5.5 installed, other components like buttons work fine. In this rating, the stars are not being rendered, only the text.
Any ideas about how I can fix this? I didn't find any relevant posts online. If someone can recommend any other stable vue rating component, that would also work.
This is the component 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>
My main.js file which has vuetify css import:
import Vuetify from 'vuetify'
import 'vuetify/dist/vuetify.min.css'
I have also attached the screenshot of what was rendered.
rating
which is thev-model
in thedata
section of your script? – vahdet