13 lines
243 B
Vue
13 lines
243 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>
|