Files
flowbite-vue/docs/components/rating/examples/RatingExample.vue
2022-12-14 22:25:19 +03:00

9 lines
168 B
Vue

<template>
<div class="vp-raw flex flex-col">
<Rating :rating="4" />
</div>
</template>
<script setup>
import { Rating } from '../../../../src/index'
</script>