UNPKG

antd-mini

Version:

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

22 lines (21 loc) 654 B
import { Component, triggerEventOnly } from '../_util/simply'; import { ModalFunctionalProps } from './props'; Component(ModalFunctionalProps, { onClose: function () { triggerEventOnly(this, 'close'); }, onMaskClose: function () { if (this.properties.maskClosable) { triggerEventOnly(this, 'close'); } }, onPrimaryButtonTap: function () { triggerEventOnly(this, 'primaryButtonTap'); }, onSecondaryButtonTap: function () { triggerEventOnly(this, 'secondaryButtonTap'); }, onCancelButtonTap: function () { triggerEventOnly(this, 'cancelButtonTap'); }, });