| 1234567891011121314151617181920212223242526272829303132 |
- <script lang="ts" setup>
- import { propTypes } from '@/utils/propTypes'
- defineOptions({ name: 'IFrame' })
- const props = defineProps({
- src: propTypes.string.def('')
- })
- const loading = ref(true)
- const height = ref('')
- const frameRef = ref<HTMLElement | null>(null)
- const init = () => {
- height.value = document.documentElement.clientHeight - 94.5 + 'px'
- loading.value = false
- }
- onMounted(() => {
- setTimeout(() => {
- init()
- }, 300)
- })
- </script>
- <template>
- <div v-loading="loading" :style="'height:' + height">
- <iframe
- ref="frameRef"
- :src="props.src"
- frameborder="no"
- scrolling="auto"
- style="width: 100%; height: 100%"
- ></iframe>
- </div>
- </template>
|