tab-panel-props.js 646 B

1234567891011121314151617181920212223242526272829
  1. /* eslint-disable */
  2. const props = {
  3. /** 选项卡内容隐藏时是否销毁 */
  4. destroyOnHide: {
  5. type: Boolean,
  6. value: true,
  7. },
  8. /** 是否禁用当前选项卡 */
  9. disabled: {
  10. type: Boolean,
  11. value: false,
  12. },
  13. /** 选项卡名称,可自定义选项卡导航内容 */
  14. label: {
  15. type: String,
  16. },
  17. /** 用于自定义选项卡面板内容 */
  18. panel: {
  19. type: String,
  20. },
  21. /** 选项卡的值,唯一标识 */
  22. value: {
  23. type: String,
  24. optionalTypes: [Number],
  25. },
  26. };
  27. export default props;
  28. //# sourceMappingURL=tab-panel-props.js.map