layui/.svn/pristine/42/42daa932623c2956ca75a7030776f56e7583df52.svn-base
2022-12-09 16:41:41 +08:00

29 lines
499 B
Plaintext

<script lang="ts">
import { computed, VNodeTypes } from "vue";
export default {
name: "Iframe",
};
</script>
<script lang="ts" setup>
export interface IframeProps {
src?: string | Function | object | VNodeTypes;
}
const props = defineProps<IframeProps>();
const src = computed(() => {
return props.src as string;
});
</script>
<template>
<iframe
scrolling="auto"
class="layui-layer-iframe"
allowtransparency="true"
frameborder="0"
:src="src"
></iframe>
</template>