Files
2026-04-21 09:08:42 +07:00

10 lines
218 B
Vue

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