tiny-vue/examples/sites/demos/mobile-first/app/rate/radio-rate.vue

19 lines
235 B
Vue

<template>
<tiny-rate v-model="rate" radio></tiny-rate>
</template>
<script>
import { Rate } from '@opentiny/vue'
export default {
components: {
TinyRate: Rate
},
data() {
return {
rate: 2
}
}
}
</script>