index.vue 426 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="wrap-nav" :style="{height: this.height}">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. height: {
  10. type: String,
  11. default: '160rpx'
  12. }
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .wrap-nav {
  18. background-color: #FFFFFF;
  19. position: fixed;
  20. left: 0;
  21. bottom: env(safe-area-inset-bottom);
  22. width: 100%;
  23. padding: 0;
  24. margin: 0;
  25. z-index: 998;
  26. }
  27. </style>