import React from 'react' import Radio from './radio' import RadioGroup from './radio_group' import _ from 'lodash' import { observable } from 'mobx' import { Col, Row } from '../grid' const store = observable({ value: 3, data: [ { value: 1, text: '广州', }, { value: 2, text: '深圳', }, { value: 3, text: '成都', disabled: true, }, ], setValue(value: any) { console.log(value) this.value = value }, checked: false, setChecked(checked: any) { console.log('setChecked', checked) this.checked = checked }, }) export const ComRadio = () => (