UNPKG

tdesign-mobile-vue

Version:
61 lines (58 loc) 1.05 kB
/** * tdesign v1.15.0 * (c) 2026 TDesign Group * @license MIT */ var TabBarProps = { bordered: { type: Boolean, default: true }, fixed: { type: Boolean, default: true }, placeholder: Boolean, safeAreaInsetBottom: { type: Boolean, default: true }, shape: { type: String, default: "normal", validator: function validator(val) { if (!val) return true; return ["normal", "round"].includes(val); } }, split: { type: Boolean, default: true }, theme: { type: String, default: "normal", validator: function validator(val) { if (!val) return true; return ["normal", "tag"].includes(val); } }, value: { type: [String, Number, Array], default: void 0 }, modelValue: { type: [String, Number, Array], default: void 0 }, defaultValue: { type: [String, Number, Array] }, zIndex: { type: Number, default: 1 }, onChange: Function }; export { TabBarProps as default }; //# sourceMappingURL=props.js.map