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

16 lines
253 B
Vue
Raw Normal View History

2018-03-19 02:16:27 +00:00
2018-02-06 11:00:34 +00:00
import PropTypes from '../_util/vue-types'
export default {
props: {
value: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]),
2018-02-09 10:42:19 +00:00
disabled: PropTypes.bool,
2018-02-12 10:10:51 +00:00
title: PropTypes.string,
2018-02-06 11:00:34 +00:00
},
isSelectOption: true,
}
2018-03-19 02:16:27 +00:00