ant-design-vue/components/vc-select/OptGroup.jsx

10 lines
132 B
React
Raw Normal View History

2018-03-19 02:16:27 +00:00
2018-02-12 10:10:51 +00:00
import PropTypes from '../_util/vue-types'
2018-02-06 11:00:34 +00:00
export default {
2018-02-12 10:10:51 +00:00
props: {
label: PropTypes.any,
},
2018-02-06 11:00:34 +00:00
isSelectOptGroup: true,
}
2018-03-19 02:16:27 +00:00