DFmoon 3a60055f8e
feat(Empty): add Empty component (#3327)
* feat(Empty): add Empty component

* fix: 支持传入自定义图片链接

Co-authored-by: shendongfeng <shendongfeng@youzan.com>
2020-06-30 11:43:37 +08:00

15 lines
366 B
Plaintext

<wxs src="../wxs/utils.wxs" module="utils" />
<view class=" custom-class van-empty">
<view class="van-empty__image">
<image wx:if="{{ imageUrl }}"
class="van-empty__image__img"
src="{{ imageUrl }}" />
</view>
<p class="van-empty__description">
{{ description }}
</p>
<view class="van-empty__bottom">
<slot></slot>
</view>
</view>