tab-pane.js 450 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var runtime = require('../../../utils/vue/props/runtime.js');
  4. const tabPaneProps = runtime.buildProps({
  5. label: {
  6. type: String,
  7. default: ""
  8. },
  9. name: {
  10. type: [String, Number]
  11. },
  12. closable: {
  13. type: Boolean,
  14. default: void 0
  15. },
  16. disabled: Boolean,
  17. lazy: Boolean
  18. });
  19. exports.tabPaneProps = tabPaneProps;
  20. //# sourceMappingURL=tab-pane.js.map