UNPKG

tdesign-mobile-vue

Version:
59 lines (54 loc) 1.03 kB
/** * tdesign v1.7.0 * (c) 2024 TDesign Group * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var props = { content: { type: [String, Function] }, default: { type: [String, Function] }, disabled: { type: Boolean, default: void 0 }, hover: Boolean, href: { type: String, default: "" }, prefixIcon: { type: Function }, size: { type: String, default: "medium", validator: function validator(val) { if (!val) return true; return ["small", "medium", "large"].includes(val); } }, suffixIcon: { type: Function }, target: { type: String, default: "" }, theme: { type: String, default: "default", validator: function validator(val) { if (!val) return true; return ["default", "primary", "danger", "warning", "success"].includes(val); } }, underline: Boolean, onClick: Function }; exports["default"] = props; //# sourceMappingURL=props.js.map