t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
30 lines (29 loc) • 409 B
JavaScript
const e = {
imageList: {
type: Array,
default: () => []
},
round: {
type: Boolean,
default: () => !1
},
expandIndex: {
type: Number,
default: () => 0
},
color: {
type: String,
default: () => "#fff"
},
width: {
type: [String, Number],
default: () => ""
},
height: {
type: [String, Number],
default: () => ""
}
};
export {
e as Props
};