brotherton-erpnext/erpnext/public/js/hub/components/Rating.vue
2018-08-30 15:12:18 +05:30

17 lines
326 B
Vue

<template>
<span>
<i v-for="index in max_rating"
:key="index"
class="fa fa-fw star-icon"
:class="{'fa-star': index <= rating, 'fa-star-o': index > rating}"
>
</i>
</span>
</template>
<script>
export default {
props: ['rating', 'max_rating']
}
</script>