123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- duration: {
- type: Number,
- default: () => defProps.tabs.duration
- },
-
- list: {
- type: Array,
- default: () => defProps.tabs.list
- },
-
- lineColor: {
- type: String,
- default: () => defProps.tabs.lineColor
- },
-
- activeStyle: {
- type: [String, Object],
- default: () => defProps.tabs.activeStyle
- },
-
- inactiveStyle: {
- type: [String, Object],
- default: () => defProps.tabs.inactiveStyle
- },
-
- lineWidth: {
- type: [String, Number],
- default: () => defProps.tabs.lineWidth
- },
-
- lineHeight: {
- type: [String, Number],
- default: () => defProps.tabs.lineHeight
- },
-
- lineBgSize: {
- type: String,
- default: () => defProps.tabs.lineBgSize
- },
-
- itemStyle: {
- type: [String, Object],
- default: () => defProps.tabs.itemStyle
- },
-
- scrollable: {
- type: Boolean,
- default: () => defProps.tabs.scrollable
- },
-
- current: {
- type: [Number, String],
- default: () => defProps.tabs.current
- },
-
- keyName: {
- type: String,
- default: () => defProps.tabs.keyName
- }
- }
- })
|