ElementPlus Empty 空状态
2021-09-26 15:52 更新
Empty 空状态
空状态时的占位提示。
基础用法
<template>
<el-empty description="描述文字"></el-empty>
</template>
自定义图片
通过设置 image 属性传入图片 URL。
<template>
<el-empty
image="https://shadow.elemecdn.com/app/element/hamburger.9cf7b091-55e9-11e9-a976-7f4d0b07eef6.png"
></el-empty>
</template>
图片尺寸
通过设置 image-size 属性来控制图片大小。
<template>
<el-empty :image-size="200"></el-empty>
</template>
底部内容
使用默认插槽可在底部插入内容。
<template>
<el-empty>
<el-button type="primary">按钮</el-button>
</el-empty>
</template>
Empty Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
image | 图片地址 | string | — | — |
image-size | 图片大小(宽度) | number | — | — |
description | 文本描述 | string | — | — |
Empty Slots
Name | 说明 |
---|---|
default | 自定义底部内容 |
image | 自定义图片 |
description | 自定义描述文字 |
以上内容是否对您有帮助:
更多建议: