1234567891011121314151617181920212223242526272829 |
- const props = {
- customStyle: {
- type: String,
- value: '',
- },
- height: {
- type: null,
- value: 336,
- },
- keys: {
- type: Object,
- },
- multiple: {
- type: Boolean,
- value: false,
- },
- options: {
- type: Array,
- value: [],
- },
- value: {
- type: null,
- value: null,
- },
- defaultValue: {
- type: null,
- },
- };
- export default props;
|