14 lines
211 B
Vue
14 lines
211 B
Vue
|
<script>
|
||
|
import PropTypes from '../_util/vue-types'
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
value: PropTypes.oneOfType([
|
||
|
PropTypes.string,
|
||
|
PropTypes.number,
|
||
|
]),
|
||
|
},
|
||
|
isSelectOption: true,
|
||
|
}
|
||
|
</script>
|