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

13 lines
337 B
Vue
Raw Normal View History

2020-10-12 10:46:05 +00:00
import { defineComponent } from 'vue';
2019-01-12 03:33:27 +00:00
import PropTypes from '../_util/vue-types';
2020-10-12 10:46:05 +00:00
export default defineComponent({
2018-02-12 10:10:51 +00:00
props: {
2019-01-12 03:33:27 +00:00
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
label: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2018-02-12 10:10:51 +00:00
},
2018-02-06 11:00:34 +00:00
isSelectOptGroup: true,
2020-07-03 14:53:50 +00:00
render() {
return null;
},
2020-10-12 10:46:05 +00:00
});