On This Page
Use to show a placeholder while content is loading.
npx shadcn-vue@latest add skeleton
<script setup lang="ts"> import { Skeleton } from '@/components/ui/skeleton' </script> <template> <Skeleton class="w-[100px] h-5 rounded-full" /> </template>