mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
|
import PropTypes from '../_util/vue-types';
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
||
|
label: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
||
|
disabled: PropTypes.bool,
|
||
|
title: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
||
|
},
|
||
|
isSelectOption: true,
|
||
|
render() {
|
||
|
return null;
|
||
|
},
|
||
|
};
|