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.

16 lines
379 B

7 months ago
  1. <!-- 自定义状态栏 -->
  2. <template>
  3. <view :style="{ height: statusBarHeight }" class="uni-status-bar"><slot /></view>
  4. </template>
  5. <script setup>
  6. import sheep from '@/sheep';
  7. const statusBarHeight = sheep.$platform.device.statusBarHeight + 'px';
  8. </script>
  9. <style lang="scss">
  10. .uni-status-bar {
  11. // width: 750rpx;
  12. height: var(--status-bar-height);
  13. }
  14. </style>