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
584 B

const props = {
autoClose: {
type: Boolean,
value: true,
},
cancelBtn: {
type: null,
value: true,
},
confirmBtn: {
type: null,
value: true,
},
header: {
type: Boolean,
value: true,
},
keys: {
type: Object,
},
title: {
type: String,
value: '',
},
value: {
type: Array,
value: null,
},
defaultValue: {
type: Array,
},
visible: {
type: Boolean,
value: false,
},
};
export default props;