Minimal 5-Star Rating Component For Vue.js

A lightweight and minimal clean 5-star rating component to rate products, comments, posts on the Vue.js application.

How to use it:

1. Import the Star Rating component.

import Rating from './components/Rating.vue'

2. Add the star rating component to the app template and determine the current and max rating values as follows:

<Rating :grade="3" :maxStars="5" :hasCounter="true" />

3. Render the star rating component.

export default {
  name: 'App',
  components: {
    Rating
  },
  beforeCreate: function() {
    // do something
  }
}

Download Details:

Author: ramazanerikli

Live Demo: https://ramazanerikli.github.io/vue-star-rating/

Download Link: https://github.com/ramazanerikli/vue-star-rating/archive/master.zip

Official Website: https://github.com/ramazanerikli/vue-star-rating

Install & Download:

Tags:

Add Comment