mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-13 02:25:06 +08:00
12 lines
242 B
Vue
12 lines
242 B
Vue
![]() |
<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>
|