index.vue 242 B

1234567891011
  1. <template>
  2. <ContentWrap>
  3. <IFrame :src="src" />
  4. </ContentWrap>
  5. </template>
  6. <script setup lang="ts">
  7. import { ref } from 'vue'
  8. import { IFrame } from '@/components/IFrame'
  9. const src = ref('http://skywalking.shop.iocoder.cn')
  10. </script>