index.vue 412 B

123456789101112131415161718
  1. <template>
  2. <div :style="'height:' + height">
  3. <iframe :id="iframeId" style="width: 100%; height: 100%" :src="src" frameborder="no"></iframe>
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. const props = defineProps({
  8. src: {
  9. type: String,
  10. default: "/"
  11. },
  12. iframeId: {
  13. type: String
  14. }
  15. });
  16. const height = ref(document.documentElement.clientHeight - 94.5 + "px");
  17. </script>