(eventName: string, child?: TrivialInstance)
| 136 | }, |
| 137 | |
| 138 | trigger(eventName: string, child?: TrivialInstance) { |
| 139 | const { currentIndex } = this.data; |
| 140 | |
| 141 | const data = this.getChildData(currentIndex, child); |
| 142 | |
| 143 | if (!isDef(data)) { |
| 144 | return; |
| 145 | } |
| 146 | |
| 147 | this.$emit(eventName, data); |
| 148 | }, |
| 149 | |
| 150 | onTap(event: WechatMiniprogram.TouchEvent) { |
| 151 | const { index } = event.currentTarget.dataset; |