xdesign-vue-next
Version:
XDesign Component for vue-next
46 lines (43 loc) • 735 B
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
/* unplugin-vue-components disabled */var props = {
alt: {
type: String,
"default": ""
},
content: {
type: [String, Function]
},
"default": {
type: [String, Function]
},
hideOnLoadFailed: Boolean,
icon: {
type: Function
},
image: {
type: String,
"default": ""
},
imageProps: {
type: Object
},
shape: {
type: String,
"default": "circle",
validator: function validator(val) {
if (!val) return true;
return ["circle", "round"].includes(val);
}
},
size: {
type: String,
"default": ""
},
onError: Function
};
export { props as default };
//# sourceMappingURL=props.js.map