UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

14 lines (12 loc) 320 B
// @ts-nocheck import { Component, triggerEventValues } from '../_util/simply'; import { PromptsProps } from './props'; Component({ props: PromptsProps, methods: { onItemTap(e) { const { item, index } = e.currentTarget.dataset; triggerEventValues(this, 'itemTap', [item, index], e); }, }, });