# Empty 空状态

空状态时的占位提示。

# 引入

import PressEmpty from 'press-ui/press-empty/press-empty';

export default {
  components: {
    PressEmpty,
  }
}

# 代码演示

# 基础用法

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

# 图片类型

Empty 组件内置了多种占位图片类型,可以在不同业务场景下使用。

<!-- 通用错误 -->
<press-empty image="error" description="描述文字" />
<!-- 网络错误 -->
<press-empty image="network" description="描述文字" />
<!-- 搜索提示 -->
<press-empty image="search" description="描述文字" />

# 自定义图片

需要自定义图片时,可以在 image 属性中传入任意图片 URL。

<press-empty
  class="custom-image"
  image="https://mike-1255355338.cos.ap-guangzhou.myqcloud.com/press%2Fimg%2Fcustom-empty-image.png"
  description="描述文字"
/>

# 底部内容

通过默认插槽可以在 Empty 组件的下方插入内容。

<press-empty description="描述文字">
  <press-button round type="danger" class="bottom-button">按钮</press-button>
</press-empty>

<style>
  .bottom-button {
    width: 160px;
    height: 40px;
  }
</style>

# E-SPORT

新增e-sport类型,要撑满父元素高度的话可以传入 custom-style="height: 100%;"

<press-empty 
  type="e-sport" 
  custom-style="height: 300px;"
/>

# HOR

<press-empty 
  type="hor" 
/>

# API

# Props

参数 说明 类型 默认值
image 图片类型,可选值为 error network search,支持传入图片 URL string default
description 图片下方的描述文字 string -
type 额外的类型,可选值为 e-sport hor string -

# Slots

名称 说明
- 自定义底部内容
image 自定义图标
description 自定义描述文字

# 在线调试

横屏