mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
16 lines
253 B
Vue
16 lines
253 B
Vue
|
|
import PropTypes from '../_util/vue-types'
|
|
|
|
export default {
|
|
props: {
|
|
value: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
disabled: PropTypes.bool,
|
|
title: PropTypes.string,
|
|
},
|
|
isSelectOption: true,
|
|
}
|
|
|