Files
ipms-sjy/yudao-ui-admin-vue3/src/views/infra/skywalking/index.vue
2022-11-23 10:41:14 +08:00

12 lines
242 B
Vue

<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>