2023-03-06 17:57:39 +08:00

41 lines
634 B
JavaScript

const props = {
align: {
type: String,
value: null,
},
borderless: {
type: Boolean,
value: false,
},
customStyle: {
type: String,
value: '',
},
disabled: {
type: Boolean,
value: undefined,
},
icon: {
type: null,
value: 'fill-circle',
},
keys: {
type: Object,
},
name: {
type: String,
value: '',
},
options: {
type: Array,
},
value: {
type: null,
value: null,
},
defaultValue: {
type: null,
},
};
export default props;