1234567891011121314 |
- import { FormRadioGroupDefaultProps } from './props';
- import createComponent from '../createComponent';
- import fmtEvent from '../../_util/fmtEvent';
- createComponent({
- props: FormRadioGroupDefaultProps,
- methods: {
- onChange: function (value, e) {
- this.emit('onChange', value);
- if (this.props.onChange) {
- this.props.onChange(value, fmtEvent(this.props, e));
- }
- },
- },
- });
|