tiny-vue_version0/examples/sites/demos/pc/app/rate/allow-half-composition-api.vue

11 lines
201 B
Vue

<template>
<tiny-rate v-model="rate2" allow-half></tiny-rate>
</template>
<script setup>
import { ref } from 'vue'
import { Rate as TinyRate } from '@opentiny/vue'
const rate2 = ref(2.5)
</script>