123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- export default {
- value: {
- type: Number,
- default: 0
- },
- tabs: {
- type: Array,
- default() {
- return []
- }
- },
- bgColor: {
- type: String,
- default: '#fff'
- },
- padding: {
- type: String,
- default: '0'
- },
- color: {
- type: String,
- default: '#333'
- },
- activeColor: {
- type: String,
- default: '#2979ff'
- },
- fontSize: {
- type: String,
- default: '28rpx'
- },
- activeFontSize: {
- type: String,
- default: '32rpx'
- },
- bold: {
- type: Boolean,
- default: false
- },
- scroll: {
- type: Boolean,
- default: true
- },
- height: {
- type: String,
- default: '70rpx'
- },
- lineColor: {
- type: String,
- default: '#2979ff'
- },
- lineHeight: {
- type: [String, Number],
- default: '10rpx'
- },
- lineScale: {
- type: Number,
- default: 0.5
- },
- lineRadius: {
- type: String,
- default: '10rpx'
- },
- pills: {
- type: Boolean,
- default: false
- },
- pillsColor: {
- type: String,
- default: '#2979ff'
- },
- pillsBorderRadius: {
- type: String,
- default: '10rpx'
- },
- field: {
- type: String,
- default: ''
- },
- fixed: {
- type: Boolean,
- default: false
- },
- paddingItem: {
- type: String,
- default: '0 22rpx'
- },
- lineAnimation: {
- type: Boolean,
- default: true
- },
- zIndex: {
- type: Number,
- default: 11
- }
- }
|