tdesign-mobile-vue
Version:
tdesign-mobile-vue
36 lines (31 loc) • 609 B
JavaScript
/**
* tdesign v1.7.0
* (c) 2024 TDesign Group
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var props = {
badge: {
type: Object
},
description: {
type: [String, Function]
},
image: {
type: [String, Object, Function]
},
layout: {
type: String,
default: "vertical",
validator: function validator(val) {
if (!val) return true;
return ["vertical", "horizontal"].includes(val);
}
},
text: {
type: [String, Function]
}
};
exports["default"] = props;
//# sourceMappingURL=grid-item-props.js.map