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

19 lines
238 B
Vue

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