- Moved `app.config.ts` to the `app` directory - Migrated `.vue` files and other assets to the `app` directory - Updated import paths to reflect the new file locations
14 lines
309 B
Vue
14 lines
309 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/utils'
|
|
|
|
interface SkeletonProps {
|
|
class?: HTMLAttributes['class']
|
|
}
|
|
|
|
const props = defineProps<SkeletonProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="cn('animate-pulse rounded-md bg-muted', props.class)" />
|
|
</template>
|