StatusBar.vue 380 B

123456789101112131415161718192021222324
  1. <template>
  2. <view :style="{ height: statusBarHeight }" class="uni-status-bar">
  3. <slot />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'UniStatusBar',
  9. data() {
  10. const info = uni.getWindowInfo();
  11. const h = info.statusBarHeight ?? 20;
  12. return {
  13. statusBarHeight: h + 'px'
  14. };
  15. }
  16. };
  17. </script>
  18. <style lang="scss">
  19. .uni-status-bar {
  20. background: #ffffff;
  21. }
  22. </style>