12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- "use strict";
- var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
- var props = {
- props: {
- duration: {
- type: Number,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.duration
- },
- list: {
- type: Array,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.list
- },
- lineColor: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineColor
- },
- activeStyle: {
- type: [String, Object],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.activeStyle
- },
- inactiveStyle: {
- type: [String, Object],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.inactiveStyle
- },
- lineWidth: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineWidth
- },
- lineHeight: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineHeight
- },
- lineBgSize: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineBgSize
- },
- itemStyle: {
- type: [String, Object],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.itemStyle
- },
- scrollable: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.scrollable
- },
- current: {
- type: [Number, String],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.current
- },
- keyName: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.keyName
- }
- }
- };
- exports.props = props;
|