mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-27 02:04:09 +00:00
20 lines
459 B
Vue
20 lines
459 B
Vue
<template>
|
|
<div :style="gridStyle">
|
|
<PackCardSkeleton v-for="n in skeletonCardCount" :key="n" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import PackCardSkeleton from '@/components/dialog/content/manager/skeleton/PackCardSkeleton.vue'
|
|
|
|
const { skeletonCardCount = 12, gridStyle } = defineProps<{
|
|
skeletonCardCount?: number
|
|
gridStyle: {
|
|
display: string
|
|
gridTemplateColumns: string
|
|
padding: string
|
|
gap: string
|
|
}
|
|
}>()
|
|
</script>
|