FixedLayout.vue 229 B

123456789101112131415
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <view class="ios fixed bottom-0 box-border w-full bg-white px24rpx">
  5. <view class="pb20rpx pt10rpx">
  6. <slot />
  7. </view>
  8. </view>
  9. </template>
  10. <style scoped>
  11. </style>