rex 60453083b3
feat(Tab): add new prop lazyRender & improve performance (#2328)
Tab

add new prop lazyRender
improve performace
Sticky

add new prop container
2019-11-18 21:15:20 +08:00

42 lines
750 B
JavaScript

import Page from '../../common/page';
Page({
data: {
tabs: [1, 2, 3, 4],
tabsMore: [1, 2, 3, 4, 5, 6, 7, 8],
tabsWithName: [
{ name: 'a', index: 1 },
{ name: 'b', index: 2 },
{ name: 'c', index: 3 }
]
},
onClickDisabled(event) {
wx.showToast({
title: `标签 ${event.detail.index + 1} 已被禁用`,
icon: 'none'
});
},
onChange(event) {
wx.showToast({
title: `切换到标签 ${event.detail.index + 1}`,
icon: 'none'
});
},
onClickNavRight() {
wx.showToast({
title: '点击 right nav',
icon: 'none'
});
},
onClick(event) {
wx.showToast({
title: `点击标签 ${event.detail.index + 1}`,
icon: 'none'
});
}
});