props.js 360 B

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