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.
39 lines
622 B
39 lines
622 B
const props = {
|
|
align: {
|
|
type: String,
|
|
value: 'center',
|
|
},
|
|
cancelText: {
|
|
type: String,
|
|
value: '取消',
|
|
},
|
|
count: {
|
|
type: Number,
|
|
value: 8,
|
|
},
|
|
description: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
items: {
|
|
type: Array,
|
|
},
|
|
showCancel: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
theme: {
|
|
type: String,
|
|
value: 'list',
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
value: null,
|
|
},
|
|
defaultVisible: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
};
|
|
export default props;
|