vb-rating
v1.0.3
Published
Rating component is based on starability for Vue Bulma
Downloads
3
Maintainers
Readme
Rating
Rating component is based on starability.css for Vue Bulma.
Installation
$ npm install vb-rating --save
Examples
<template>
<form>
<rating :items="items" legend="Default star rating:" :value="value" @change="update"></rating>
</form>
{{ value }}
</template>
<script>
import Rating from 'vue-bulma-rating'
export default {
components: {
Rating
},
data () {
return {
value: 2,
items: [
{
title: '5 Stars',
value: 5
},
{
title: '4 Stars',
value: 4
},
{
title: '3 Stars',
value: 3
},
{
title: '2 Stars',
value: 2
},
{
title: '1 Star',
value: 1
}
]
}
},
methods: {
update (val) {
this.value = val
}
}
}
</script>
Badges