Files
module-farmasi/components/ui-components/ratting/ReadOnlyRatting.vue
T
Yusron alamsyah 1f94c60e71 first commit
2026-03-26 09:11:29 +07:00

10 lines
224 B
Vue

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