FormGroup.ts 574 B

12345678910111213141516171819202122232425262728293031
  1. import type { HTMLAttributes } from "vue";
  2. export interface FormGroupProps extends HTMLAttributes {
  3. /**
  4. * 标题
  5. */
  6. title: string
  7. /**
  8. * 列元素之间的间距(单位为 px)
  9. */
  10. gutter: number,
  11. /**
  12. * flex 布局下的水平排列方式:
  13. */
  14. justify: 'start'|'end'|'center'|'space-around'|'space-between';
  15. /**
  16. * 是否为朴素样式
  17. * @default false
  18. */
  19. plain: boolean,
  20. /**
  21. * 是否默认折叠
  22. * @default false
  23. */
  24. collapsed: boolean,
  25. /**
  26. * 是否可折叠
  27. * @default false
  28. */
  29. collapsible: boolean,
  30. }