city-casereport/miniprogram_npm/tdesign-miniprogram/tab-bar/props.js

39 lines
628 B
JavaScript
Raw Permalink Normal View History

2023-12-06 14:22:42 +08:00
const props = {
bordered: {
type: Boolean,
value: true,
},
externalClasses: {
type: Array,
},
fixed: {
type: Boolean,
value: true,
},
safeAreaInsetBottom: {
type: Boolean,
value: true,
},
shape: {
type: String,
value: 'normal',
},
split: {
type: Boolean,
value: true,
},
theme: {
type: String,
value: 'normal',
},
value: {
type: null,
value: null,
},
defaultValue: {
type: null,
value: null,
},
};
export default props;