Version 1.3.0
Version 1.3.0 adds support for v-model
when using Vue 2.2 and above:
Markup
<star-rating v-model="boundRating"></star-rating>
View Model
import StarRating from 'vue-star-rating';
export default {
components:{
StarRating
},
data(){
return {
boundRating: 0
}
}
}
Thanks to @acro5piano for the input on this feature.