12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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
- },
-
- lineBgSize: {
- type: String,
- default: uni.$u.props.tabs.lineBgSize
- },
-
- 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
- }
- }
- }
|