mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
9 lines
246 B
Vue
9 lines
246 B
Vue
import PropTypes from '../_util/vue-types';
|
|
export default {
|
|
props: {
|
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
label: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
},
|
|
isSelectOptGroup: true,
|
|
};
|