index.vue 434 B

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