props.js 660 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. export const props = {
  2. prefixCls: {
  3. type: String,
  4. value: 'wux-tabs',
  5. },
  6. defaultCurrent: {
  7. type: String,
  8. value: '',
  9. },
  10. current: {
  11. type: String,
  12. value: '',
  13. },
  14. scroll: {
  15. type: Boolean,
  16. value: false,
  17. },
  18. controlled: {
  19. type: Boolean,
  20. value: false,
  21. },
  22. theme: {
  23. type: String,
  24. value: 'balanced',
  25. },
  26. direction: {
  27. type: String,
  28. value: 'horizontal',
  29. },
  30. justify: {
  31. type: String,
  32. value: 'space-around',
  33. },
  34. activeLineMode: {
  35. type: String,
  36. value: 'auto',
  37. },
  38. }