zoujiandong 2bd2fd31ac 1.22
2024-01-22 08:55:30 +08:00

46 lines
717 B
JavaScript

const props = {
autoClose: {
type: Boolean,
value: true,
},
cancelBtn: {
type: null,
value: true,
},
columns: {
type: null,
value: [],
},
confirmBtn: {
type: null,
value: true,
},
customStyle: {
type: String,
value: '',
},
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;