jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/TapModal/index.js

14 lines
276 B
JavaScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
Component({
props: {
className: '',
payload: '',
disabled: false,
},
methods: {
onTap: function (e) {
if (typeof this.props.onTap === 'function') {
this.props.onTap(e);
}
},
},
});