refactor: IFrame

This commit is contained in:
xingyu
2022-11-22 21:55:31 +08:00
parent d604c6c5fb
commit 557f2937f5
6 changed files with 221 additions and 213 deletions

View File

@ -1,11 +1,12 @@
<script setup lang="ts">
import { IFrame } from '@/components/IFrame'
import { ref } from 'vue'
const src = ref('http://skywalking.shop.iocoder.cn')
</script>
<template>
<ContentWrap>
<IFrame :src="src" />
</ContentWrap>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { IFrame } from '@/components/IFrame'
const src = ref('http://skywalking.shop.iocoder.cn')
</script>