import React from 'react' /** * 下拉单选框 */ class Select extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) } handleChange (event) { const { onChange } = this.props onChange(event.target.value) } render () { return (
) } } Select.defaultProps = { label: '', value: '1', options: [ { value: '1', text: '选项1' }, { value: '2', text: '选项2' } ] } export default Select