feat: add vue3(element-plus)

This commit is contained in:
xingyu
2022-07-18 19:06:37 +08:00
parent c6b58dca52
commit 80a3ae8d74
423 changed files with 41039 additions and 0 deletions

View File

@ -0,0 +1,3 @@
import IFrame from './src/IFrame.vue'
export { IFrame }

View File

@ -0,0 +1,33 @@
<script setup lang="ts">
import { propTypes } from '@/utils/propTypes'
import { ref, onMounted } from 'vue'
const props = defineProps({
src: propTypes.string.def('')
})
const loading = ref(true)
const frameSrc = ref<string>('')
const height = ref('')
const frameRef = ref<HTMLElement | null>(null)
const init = () => {
frameSrc.value = props.src
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
:src="frameSrc"
style="width: 100%; height: 100%"
frameborder="no"
scrolling="auto"
ref="frameRef"
></iframe>
</div>
</template>
<script lang="less" scoped></script>