C端小程序
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.

20 lines
347 B

  1. Component({
  2. externalClasses: ['i-class'],
  3. properties: {
  4. title: {
  5. type: String,
  6. value: ''
  7. },
  8. // 标题顶部距离
  9. hideTop: {
  10. type: Boolean,
  11. value: false
  12. },
  13. hideBorder: {
  14. type: Boolean,
  15. value: false
  16. }
  17. }
  18. });