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

14 lines
172 B
JavaScript

import Page from '../../common/page';
Page({
data: {
activeTab: 0,
},
onChange(event) {
this.setData({
activeTab: event.detail.name,
});
},
});