Files
ruoyi-vue-pro/yudao-ui-admin-vue3/src/views/infra/skywalking/index.vue
2022-07-18 19:06:37 +08:00

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>