element-plus/website/docs/zh-CN/empty.md
三咲智子 55348b30b6
style: use prettier (#3228)
* style: use prettier

* style: just prettier format, no code changes

* style: eslint fix
object-shorthand, prefer-const

* style: fix no-void

* style: no-console
2021-09-04 19:29:28 +08:00

1.2 KiB

Empty 空状态

空状态时的占位提示。

基础用法

:::demo

<el-empty description="描述文字"></el-empty>

:::

自定义图片

通过设置 image 属性传入图片 URL。

:::demo

<el-empty
  image="https://shadow.elemecdn.com/app/element/hamburger.9cf7b091-55e9-11e9-a976-7f4d0b07eef6.png"
></el-empty>

:::

图片尺寸

通过设置 image-size 属性来控制图片大小。

:::demo

<el-empty :image-size="200"></el-empty>

:::

底部内容

使用默认插槽可在底部插入内容。

:::demo

<el-empty>
  <el-button type="primary">按钮</el-button>
</el-empty>

:::

Empty Attributes

参数 说明 类型 可选值 默认值
image 图片地址 string
image-size 图片大小(宽度) number
description 文本描述 string

Empty Slots

Name 说明
default 自定义底部内容
image 自定义图片
description 自定义描述文字