UNPKG

antd-mini

Version:

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

22 lines (21 loc) 574 B
import mixinValue from '../mixins/value'; import { Component, triggerEvent } from '../_util/simply'; import { RadioDefaultProps } from './props'; Component({ props: RadioDefaultProps, methods: { onChange: function (e) { var value = e.detail.value; if (!this.isControlled()) { this.update(value); } triggerEvent(this, 'change', value, e); }, }, mixins: [ mixinValue({ valueKey: 'checked', defaultValueKey: 'defaultChecked', }), ], });