tdesign-mobile-vue
Version:
tdesign-mobile-vue
46 lines (41 loc) • 704 B
JavaScript
/**
* tdesign v1.9.3
* (c) 2025 TDesign Group
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var AvatarProps = {
alt: {
type: String,
default: ""
},
badgeProps: {
type: Object
},
hideOnLoadFailed: Boolean,
icon: {
type: Function
},
image: {
type: String,
default: ""
},
imageProps: {
type: Object
},
shape: {
type: String,
validator: function validator(val) {
if (!val) return true;
return ["circle", "round"].includes(val);
}
},
size: {
type: String,
default: ""
},
onError: Function
};
exports["default"] = AvatarProps;
//# sourceMappingURL=props.js.map