UNPKG

tdesign-mobile-vue

Version:
39 lines (34 loc) 736 B
/** * tdesign v1.9.3 * (c) 2025 TDesign Group * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var DividerProps = { align: { type: String, default: "center", validator: function validator(val) { if (!val) return true; return ["left", "right", "center"].includes(val); } }, content: { type: [String, Function] }, dashed: Boolean, default: { type: [String, Function] }, layout: { type: String, default: "horizontal", validator: function validator(val) { if (!val) return true; return ["horizontal", "vertical"].includes(val); } } }; exports["default"] = DividerProps; //# sourceMappingURL=props.js.map