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.
 
 
 

20 line
553 B

  1. import { defineMixin } from '../../libs/vue'
  2. import CellGroupDefaultProps from './cellGroup'
  3. import { registerComponentProps } from '../../libs/config/props.js'
  4. const defProps = registerComponentProps(CellGroupDefaultProps)
  5. export const props = defineMixin({
  6. props: {
  7. // 分组标题
  8. title: {
  9. type: String,
  10. default: () => defProps.cellGroup.title
  11. },
  12. // 是否显示外边框
  13. border: {
  14. type: Boolean,
  15. default: () => defProps.cellGroup.border
  16. }
  17. }
  18. })