mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
chore: rm no longer used CardButtonsSkeleto
This commit is contained in:
parent
42e97c749a
commit
f9b4fd4188
1 changed files with 0 additions and 24 deletions
|
@ -1,24 +0,0 @@
|
||||||
<script setup lang="ts">
|
|
||||||
import { randint } from '@/helpers/commons'
|
|
||||||
|
|
||||||
withDefaults(defineProps<{ itemCount: number }>(), { itemCount: 4 })
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<BCard>
|
|
||||||
<template #header>
|
|
||||||
<BSkeleton width="30%" height="36px" class="m-0" />
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<div v-for="count in itemCount" :key="count">
|
|
||||||
<template v-if="randint(0, 1)">
|
|
||||||
<BSkeleton width="100%" height="24px" />
|
|
||||||
<BSkeleton :width="randint(15, 60) + '%'" height="24px" />
|
|
||||||
</template>
|
|
||||||
<BSkeleton v-else :width="randint(45, 100) + '%'" height="24px" />
|
|
||||||
|
|
||||||
<BSkeleton :width="randint(20, 30) + '%'" height="38px" class="mt-3" />
|
|
||||||
<hr />
|
|
||||||
</div>
|
|
||||||
</BCard>
|
|
||||||
</template>
|
|
Loading…
Reference in a new issue