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.
37 lines
571 B
37 lines
571 B
const props = {
|
|
placement: {
|
|
type: String,
|
|
value: null,
|
|
},
|
|
borderless: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
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;
|