13 lines
243 B
Vue
Raw Normal View History

2022-07-18 19:06:37 +08:00
<template>
<ContentWrap>
<IFrame :src="src" />
</ContentWrap>
</template>
2022-11-22 21:55:31 +08:00
<script setup lang="ts">
import { ref } from 'vue'
import { IFrame } from '@/components/IFrame'
const src = ref('http://skywalking.shop.iocoder.cn')
</script>