mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
21 lines
612 B
Vue
21 lines
612 B
Vue
|
<template>
|
||
|
<el-skeleton style="width: 240px">
|
||
|
<template #template>
|
||
|
<el-skeleton-item variant="image" style="width: 240px; height: 240px" />
|
||
|
<div style="padding: 14px">
|
||
|
<el-skeleton-item variant="p" style="width: 50%" />
|
||
|
<div
|
||
|
style="
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-items: space-between;
|
||
|
"
|
||
|
>
|
||
|
<el-skeleton-item variant="text" style="margin-right: 16px" />
|
||
|
<el-skeleton-item variant="text" style="width: 30%" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
</el-skeleton>
|
||
|
</template>
|