54 lines
747 B
JavaScript
54 lines
747 B
JavaScript
export default {
|
|
props: {
|
|
width: {
|
|
type: Number | String,
|
|
default: 88,
|
|
},
|
|
height: {
|
|
type: Number | String,
|
|
default: 88,
|
|
},
|
|
list: {
|
|
type: Array,
|
|
default: () => {
|
|
return []
|
|
},
|
|
|
|
},
|
|
deletable: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
|
|
widthAdaptive: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
Max: {
|
|
type: Number | String,
|
|
default: 9
|
|
},
|
|
rightM: {
|
|
type: Number | String,
|
|
default: 15,
|
|
},
|
|
bottoM: {
|
|
type: Number | String,
|
|
default: 15
|
|
},
|
|
radius: {
|
|
type: Number | String,
|
|
default: 10,
|
|
},
|
|
keyName:{
|
|
type:String,
|
|
default:'url',
|
|
},
|
|
// 是否显示添加
|
|
isadd:{
|
|
type:Boolean,
|
|
default:true,
|
|
}
|
|
}
|
|
}
|