ie-safe-area-bottom.vue 303 B

1234567891011121314
  1. <template>
  2. <view class="ie-safe-area-bottom safe-area-inset-bottom" :style="{ backgroundColor: bgColor }"></view>
  3. </template>
  4. <script lang="ts" setup>
  5. defineOptions({
  6. name: 'ie-safe-area-bottom',
  7. options: {
  8. virtualHost: true
  9. }
  10. });
  11. const props = defineProps<{
  12. bgColor: string;
  13. }>();
  14. </script>