30 lines
458 B
JavaScript
30 lines
458 B
JavaScript
const props = {
|
|
align: {
|
|
type: String,
|
|
value: 'left',
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
value: undefined,
|
|
},
|
|
icon: {
|
|
type: null,
|
|
value: 'fill-circle',
|
|
},
|
|
name: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
options: {
|
|
type: Array,
|
|
},
|
|
value: {
|
|
type: null,
|
|
value: null,
|
|
},
|
|
defaultValue: {
|
|
type: null,
|
|
},
|
|
};
|
|
export default props;
|