props.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. "use strict";
  2. var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
  3. var props = {
  4. props: {
  5. duration: {
  6. type: Number,
  7. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.duration
  8. },
  9. list: {
  10. type: Array,
  11. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.list
  12. },
  13. lineColor: {
  14. type: String,
  15. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineColor
  16. },
  17. activeStyle: {
  18. type: [String, Object],
  19. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.activeStyle
  20. },
  21. inactiveStyle: {
  22. type: [String, Object],
  23. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.inactiveStyle
  24. },
  25. lineWidth: {
  26. type: [String, Number],
  27. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineWidth
  28. },
  29. lineHeight: {
  30. type: [String, Number],
  31. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineHeight
  32. },
  33. lineBgSize: {
  34. type: String,
  35. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.lineBgSize
  36. },
  37. itemStyle: {
  38. type: [String, Object],
  39. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.itemStyle
  40. },
  41. scrollable: {
  42. type: Boolean,
  43. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.scrollable
  44. },
  45. current: {
  46. type: [Number, String],
  47. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.current
  48. },
  49. keyName: {
  50. type: String,
  51. default: () => uni_modules_uviewPlus_libs_config_props.defProps.tabs.keyName
  52. }
  53. }
  54. };
  55. exports.props = props;