jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/TapModal/index.js
2024-11-10 15:01:22 +08:00

14 lines
276 B
JavaScript

Component({
props: {
className: '',
payload: '',
disabled: false,
},
methods: {
onTap: function (e) {
if (typeof this.props.onTap === 'function') {
this.props.onTap(e);
}
},
},
});