14 lines
386 B
Vue
14 lines
386 B
Vue
|
<template>
|
||
|
<div flex flex-col gap-2 px-4 py-3>
|
||
|
<div flex gap-4>
|
||
|
<div>
|
||
|
<div w-12 h-12 rounded-full class="skeleton-loading-bg" />
|
||
|
</div>
|
||
|
<div flex="~ col 1 gap-2" pb2 min-w-0>
|
||
|
<div flex class="skeleton-loading-bg" h-5 w-20 rounded />
|
||
|
<div flex class="skeleton-loading-bg" h-4 w-full rounded />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|