Files
antrean-operasi/components/ui-components/ratting/ClearableRatting.vue
T

10 lines
223 B
Vue

<script setup lang="ts">
import { ref } from "vue";
const rating3 = ref(3);
</script>
<template>
<div >
<v-rating v-model="rating3" clearable density="compact" color="warning"></v-rating>
</div>
</template>