Skip to content

Empty 空状态

介绍

空状态时的占位提示

基础用法

html
<template>
  <nut-empty description="无数据"></nut-empty>
</template>

图片类型

html
<template>
  <nut-tabs v-model="tabValue">
    <nut-tab-pane title="无内容">
      <nut-empty image="empty" description="无内容"></nut-empty>
    </nut-tab-pane>
    <nut-tab-pane title="加载失败/错误">
      <nut-empty image="error" description="加载失败/错误"></nut-empty>
    </nut-tab-pane>
    <nut-tab-pane title="无网络">
      <nut-empty image="network" description="无网络"></nut-empty>
    </nut-tab-pane>
  </nut-tabs>
</template>
<script lang="ts">
import { ref } from 'vue';
export default {
  setup() {
    const tabValue = ref(0);
    return {
      tabValue
    }
  }
}
</script>

自定义图片

html
<template>
  <nut-empty description="描述文字">
    <template #image>
      <img src="https://static-ftcms.jd.com/p/files/61a9e3313985005b3958672e.png" />
    </template>
  </nut-empty>
</template>

底部内容

html
<template>
  <nut-empty image="error" description="加载失败">
    <div style="margin-top: 10px">
      <nut-button icon="refresh" type="primary">重试</nut-button>
    </div>
  </nut-empty>
</template>

API

Props

参数说明类型默认值
image图片类型,可选值为 emptyerrornetwork,支持传入图片 URLstringempty
image-size图片大小,单位为 pxnumber | string-
description图片下方的描述文字string-

Slots

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

主题定制

样式变量

组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 ConfigProvider 组件

名称默认值
--nut-empty-padding32px 0
--nut-empty-image-size170px
--nut-empty-description-margin-top4px
--nut-empty-description-color#666666
--nut-empty-description-font-size14px
--nut-empty-description-line-height20px
--nut-empty-description-padding0 40px

MIT Licensed