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

9 lines
246 B
Vue
Raw Normal View History

2019-01-12 11:33:27 +08:00
import PropTypes from '../_util/vue-types';
2018-02-06 19:00:34 +08:00
export default {
2018-02-12 18:10:51 +08:00
props: {
2019-01-12 11:33:27 +08:00
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
label: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2018-02-12 18:10:51 +08:00
},
2018-02-06 19:00:34 +08:00
isSelectOptGroup: true,
2019-01-12 11:33:27 +08:00
};