element-plus/website/docs/fr-FR/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.3 KiB

Empty

Placeholder hints for empty states.

Basic usage

:::demo

<el-empty description="description"></el-empty>

:::

Custom image

Use image prop to set image URL.

:::demo

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

:::

Image size

Use image-size prop to control image size.

:::demo

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

:::

Bottom content

Use the default slot to insert content at the bottom.

:::demo

<el-empty>
  <el-button type="primary">Button</el-button>
</el-empty>

:::

Empty Attributes

Attribute Description Type Acceptable Value Default Value
image image URL string
image-size image size (width) number
description description string

Empty Slots

Name Description
default Custom bottom content
image Custom image
description Custom description