blob: 3ce43e7c5b6388f1f3abb0e12a8e07a0245da4d3 (
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-xl.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>
|