Minimal 5-Star Rating Component For Vue.js

Install & Download:

Description:

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
  }
}
Tags:

Add Comment