props.js 305 B

1234567891011121314
  1. export default {
  2. props: {
  3. // 分组标题
  4. title: {
  5. type: String,
  6. default: uni.$u.props.cellGroup.title
  7. },
  8. // 是否显示外边框
  9. border: {
  10. type: Boolean,
  11. default: uni.$u.props.cellGroup.border
  12. }
  13. }
  14. }