14 lines
276 B
JavaScript
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);
|
|
}
|
|
},
|
|
},
|
|
}); |