Files
2026-04-21 09:08:42 +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>