Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tabs-props.js 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. /**
  6. * Tabs props
  7. *
  8. * @mixin
  9. */
  10. /* @vue/component */
  11. exports.default = {
  12. props: {
  13. activeClass: {
  14. type: String,
  15. default: 'v-tabs__item--active'
  16. },
  17. alignWithTitle: Boolean,
  18. centered: Boolean,
  19. fixedTabs: Boolean,
  20. grow: Boolean,
  21. height: {
  22. type: [Number, String],
  23. default: undefined,
  24. validator: function validator(v) {
  25. return !isNaN(parseInt(v));
  26. }
  27. },
  28. hideSlider: Boolean,
  29. iconsAndText: Boolean,
  30. mandatory: {
  31. type: Boolean,
  32. default: true
  33. },
  34. mobileBreakPoint: {
  35. type: [Number, String],
  36. default: 1264,
  37. validator: function validator(v) {
  38. return !isNaN(parseInt(v));
  39. }
  40. },
  41. nextIcon: {
  42. type: String,
  43. default: '$vuetify.icons.next'
  44. },
  45. prevIcon: {
  46. type: String,
  47. default: '$vuetify.icons.prev'
  48. },
  49. right: Boolean,
  50. showArrows: Boolean,
  51. sliderColor: {
  52. type: String,
  53. default: 'accent'
  54. },
  55. value: [Number, String]
  56. }
  57. };
  58. //# sourceMappingURL=tabs-props.js.map