brotherton-erpnext/erpnext/public/js/hub/components/Rating.vue

17 lines
326 B
Vue
Raw Normal View History

2018-08-30 09:42:18 +00:00
<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>