UNPKG

antd-mini

Version:

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

16 lines (15 loc) 470 B
import { Component, triggerEvent } from '../_util/simply'; import { GridFunctionalProps } from './props'; Component({ props: GridFunctionalProps, methods: { onTap: function (e) { var item = e.currentTarget.dataset.item; triggerEvent(this, 'tap', item); }, onFirstAppear: function (e) { var item = e.currentTarget.dataset.item; triggerEvent(this, 'firstAppear', item); }, }, });