# Empty ### Intro Occupation reminder when empty. ### Install Register component globally via `app.use`, refer to [Component Registration](#/en-US/advanced-usage#zu-jian-zhu-ce) for more registration ways. ```js import { createApp } from 'vue'; import { Empty } from 'vant'; const app = createApp(); app.use(Empty); ``` ## Usage ### Basic Usage ```html ``` ### Image Type Use the image prop to display different placeholder images. ```html ``` ### Custom Image ```html ``` ### Bottom Content ```html Button ``` ## API ### Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | image | Image type,can be set to `error` `network` `search` or image URL | _string_ | `default` | | image-size | Image size | _number \| string_ | - | | description | Description | _string_ | - | ### Slots | Name | Description | | ----------- | --------------------- | | default | Custom bottom content | | image | Custom image | | description | Custom description | ### CSS Variables The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/config-provider). | Name | Default Value | Description | | --- | --- | --- | | --van-empty-padding | _var(--van-padding-xl) 0_ | - | | --van-empty-image-size | _160px_ | - | | --van-empty-description-margin-top | _var(--van-padding-md)_ | - | | --van-empty-description-padding | _0 60px_ | - | | --van-empty-description-color | _var(--van-gray-6)_ | - | | --van-empty-description-font-size | _var(--van-font-size-md)_ | - | | --van-empty-description-line-height | _var(--van-line-height-md)_ | - | | --van-empty-bottom-margin-top | _24px_ | - |