@uone/u-empty
v1.2.0
Published
> TODO: description
Downloads
1
Readme
@uone/u-empty
TODO: description
props | 参数 | 类型 |默认值 |可选值 | 说明 | |------------ | :-----: | :-----: |:-----: |:-----------------------: | | description | string |描述文字 |—— |无数据的描述文字 | | testSize | string/number |14 |—— |描述文字大小 | | testColor | string |#969799 |—— |描述文字颜色 | | showImg | Boolean |true |—— |是否显示图片 | | image | string |—— |—— |自定义图片的链接 | | imgWidth | string/number |100 |—— |图片宽度 |
Example
<template>
<div id="app">
<!-- 默认 -->
<Uempty></Uempty>
<!-- 自定义属性 -->
<Uempty
image="https://img.yzcdn.cn/vant/empty-image-error.png"
description='暂无数据'
testSize="16"
testColor="red"
imgWidth="200"
>
</Uempty>
</div>
</template>
<script>
import Uempty from '@uone/u-empty'
export default {
name: 'App',
data () {
return {
}
},
components: {
Uempty
},
methods: {
}
}
</script>