tdesign-mobile-vue
Version:
tdesign-mobile-vue
56 lines (53 loc) • 976 B
JavaScript
/**
* tdesign v1.7.0
* (c) 2024 TDesign Group
* @license MIT
*/
var TabBarProps = {
bordered: {
type: Boolean,
default: true
},
fixed: {
type: Boolean,
default: true
},
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]
},
onChange: Function
};
export { TabBarProps as default };
//# sourceMappingURL=props.js.map