1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export default {
- props: {
-
- duration: {
- type: Number,
- default: uni.$u.props.tabs.duration
- },
-
- list: {
- type: Array,
- default: uni.$u.props.tabs.list
- },
-
- lineColor: {
- type: String,
- default: uni.$u.props.tabs.lineColor
- },
-
- activeStyle: {
- type: [String, Object],
- default: uni.$u.props.tabs.activeStyle
- },
-
- inactiveStyle: {
- type: [String, Object],
- default: uni.$u.props.tabs.inactiveStyle
- },
-
- lineWidth: {
- type: [String, Number],
- default: uni.$u.props.tabs.lineWidth
- },
-
- lineHeight: {
- type: [String, Number],
- default: uni.$u.props.tabs.lineHeight
- },
-
- itemStyle: {
- type: [String, Object],
- default: uni.$u.props.tabs.itemStyle
- },
-
- scrollable: {
- type: Boolean,
- default: uni.$u.props.tabs.scrollable
- },
-
- current: {
- type: [Number, String],
- default: uni.$u.props.tabs.current
- },
-
- keyName: {
- type: String,
- default: uni.$u.props.tabs.keyName
- }
- }
- }
|