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.

14 lines
305 B

7 months ago
  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. }