zj-page-container.vue 404 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="page-bottom" :style="{ background }">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. background: {
  10. type: String,
  11. default: ''
  12. }
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .page-bottom {
  18. width: 100%;
  19. height: 100vh;
  20. box-sizing: border-box;
  21. padding-bottom: env(safe-area-inset-bottom);
  22. }
  23. </style>