forked from opentiny/tiny-vue
20 lines
318 B
Vue
20 lines
318 B
Vue
<template>
|
|
<tiny-rate v-model="rate1" :icon-classes="iconclass1"></tiny-rate>
|
|
</template>
|
|
|
|
<script>
|
|
import { Rate } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyRate: Rate
|
|
},
|
|
data() {
|
|
return {
|
|
rate1: 3,
|
|
iconclass1: ['icon-frown', 'icon-meh', 'icon-smile']
|
|
}
|
|
}
|
|
}
|
|
</script>
|