mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
407 B
JavaScript
21 lines
407 B
JavaScript
var Tab = {
|
|
_handleZuiTabChange(e) {
|
|
var dataset = e.currentTarget.dataset;
|
|
var componentId = dataset.componentId;
|
|
var selectedId = dataset.itemId;
|
|
|
|
if (this.handleZuiTabChange) {
|
|
console.info('[ZUI:Tab:Change]', {
|
|
componentId,
|
|
selectedId
|
|
});
|
|
this.handleZuiTabChange({
|
|
componentId,
|
|
selectedId
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = Tab;
|