Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

19 строки
499 B

  1. import { defineMixin } from '../../libs/vue'
  2. import StatusBarDefaultProps from './statusBar'
  3. import { registerComponentProps } from '../../libs/config/props.js'
  4. const defProps = registerComponentProps(StatusBarDefaultProps)
  5. export const props = defineMixin({
  6. props: {
  7. bgColor: {
  8. type: String,
  9. default: () => defProps.statusBar.bgColor
  10. },
  11. // 状态栏获取得高度
  12. height: {
  13. type: Number,
  14. default: () => defProps.statusBar.height
  15. }
  16. }
  17. })