UNPKG

tdesign-mobile-vue

Version:
55 lines (52 loc) 988 B
/** * tdesign v1.7.0 * (c) 2024 TDesign Group * @license MIT */ var props = { content: { type: [String, Array, Function] }, direction: { type: String, default: "horizontal", validator: function validator(val) { if (!val) return true; return ["horizontal", "vertical"].includes(val); } }, marquee: { type: [Boolean, Object], default: false }, operation: { type: [String, Function] }, prefixIcon: { type: [Boolean, Function], default: true }, suffixIcon: { type: Function }, theme: { type: String, default: "info", validator: function validator(val) { if (!val) return true; return ["info", "success", "warning", "error"].includes(val); } }, visible: { type: Boolean, default: void 0 }, modelValue: { type: Boolean, default: void 0 }, defaultVisible: Boolean, onClick: Function }; export { props as default }; //# sourceMappingURL=props.js.map