9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
Component({
|
|
methods: {
|
|
handleAction(event: WechatMiniprogram.TouchEvent) {
|
|
const action = event.currentTarget.dataset.action as string;
|
|
this.triggerEvent('action', { action });
|
|
},
|
|
},
|
|
});
|