mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* feat(Empty): add Empty component * fix: 支持传入自定义图片链接 Co-authored-by: shendongfeng <shendongfeng@youzan.com>
14 lines
172 B
JavaScript
14 lines
172 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
activeTab: 0,
|
|
},
|
|
|
|
onChange(event) {
|
|
this.setData({
|
|
activeTab: event.detail.name,
|
|
});
|
|
},
|
|
});
|