選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

20 行
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. })