props.js 345 B

123456789101112131415
  1. import defprops from '../../libs/config/props';
  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. }