blob: 5db1c51bdf2c4e87fe876e4308025961c4b2182c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<template lang="pug">
.grid.grid-cols-4.gap-4
.model.shadow-xlg.rounded-lg.bg-white.p-4.w-full.h-80.animate-pulse
.image.bg-green-100.rounded-xl.w-full.h-48
.space-y-3.mt-5
.grid.grid-cols-3.gap-4
.h-4.bg-green-100.rounded-xl.col-span-2
.h-4.bg-green-100.rounded-xl.col-span-1
.h-4.bg-green-100.rounded-xl
</template>
<script>
export default {
name: "ModelLoading",
};
</script>
|