文件夹空空如也
用于在应用中展示数据加载前的占位内容或无数据时的空状态。提供易于集成的占位符和空状态界面,以优化用户体验并保持应用界面的整洁与一致。
基础使用
vue
<template>
<view>
<ucs-empty-file />
</view>
</template>
默认插槽
vue
<template>
<view>
<ucs-empty-file>
默认自定义区域
</ucs-empty-file>
</view>
</template>
修改提示语
vue
<template>
<view>
<ucs-empty-file desc="自定义提示语" />
</view>
</template>
组件属性
属性 | 类型 | 可选值 | 默认值 | 说明 |
---|---|---|---|---|
desc | String | - | 文件夹空空如也 | 描述文本 |
offsetTop | Number | - | 0 | 距离顶部位置 |
offsetBottom | Number | - | 0 | 距离底部位置 |