Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

25 строки
810 B

  1. import { defineMixin } from '../../libs/vue'
  2. import CollapseDefaultProps from './collapse'
  3. import { registerComponentProps } from '../../libs/config/props.js'
  4. const defProps = registerComponentProps(CollapseDefaultProps)
  5. export const props = defineMixin({
  6. props: {
  7. // 当前展开面板的name,非手风琴模式:[<string | number>],手风琴模式:string | number
  8. value: {
  9. type: [String, Number, Array, null],
  10. default: () => defProps.collapse.value
  11. },
  12. // 是否手风琴模式
  13. accordion: {
  14. type: Boolean,
  15. default: () => defProps.collapse.accordion
  16. },
  17. // 是否显示外边框
  18. border: {
  19. type: Boolean,
  20. default: () => defProps.collapse.border
  21. }
  22. }
  23. })