10 lines
210 B
Vue
10 lines
210 B
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
const rating = ref(3);
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<v-rating v-model="rating" density="compact" color="warning"></v-rating>
|
|
</div>
|
|
</template>
|