You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
487 B
32 lines
487 B
const props = {
|
|
style: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
max: {
|
|
type: Number,
|
|
value: undefined,
|
|
},
|
|
name: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
options: {
|
|
type: Array,
|
|
value: [],
|
|
},
|
|
value: {
|
|
type: Array,
|
|
value: null,
|
|
},
|
|
defaultValue: {
|
|
type: Array,
|
|
value: [],
|
|
},
|
|
};
|
|
export default props;
|