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.

42 lines
650 B

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