tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
21 lines (20 loc) • 343 B
JavaScript
const o = {
src: String,
alt: String,
size: {
type: Number,
default: () => 8
},
fit: {
type: String,
validator: (e) => ["fill", "contain", "cover", "none", "scale-down", ""].includes(e)
},
round: Boolean,
border: Boolean,
select: Boolean,
draggable: Boolean,
errorIcon: String
};
export {
o as Props
};