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.

38 lines
578 B

const props = {
closeBtn: {
type: Boolean,
value: true,
},
keys: {
type: Object,
},
options: {
type: Array,
value: [],
},
subTitles: {
type: Array,
value: [],
},
theme: {
type: String,
value: 'step',
},
title: {
type: String,
},
value: {
type: null,
value: null,
},
defaultValue: {
type: null,
value: null,
},
visible: {
type: Boolean,
value: false,
},
};
export default props;