chore: 规范 module 名称
This commit is contained in:
23
package/layer/src/component/Iframe.vue
Normal file
23
package/layer/src/component/Iframe.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "Iframe",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
export interface IframeProps {
|
||||
src: string;
|
||||
}
|
||||
|
||||
const props = defineProps<IframeProps>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<iframe
|
||||
scrolling="auto"
|
||||
class="layui-layer-iframe"
|
||||
allowtransparency="true"
|
||||
frameborder="0"
|
||||
:src="src"
|
||||
></iframe>
|
||||
</template>
|
||||
Reference in New Issue
Block a user