15815213711
2022-03-07 56f8b51c26bd1fb7e1fdc62acab5151cdf83c860
1
2
3
4
5
6
7
8
9
10
<template>
   <i-frame v-model:src="url"></i-frame>
</template>
 
<script setup lang="ts">
import iFrame from '@/components/iFrame/index.vue'
import {ref} from "vue";
 
const url = ref(import.meta.env.VITE_APP_BASE_API + "/swagger-ui/index.html")
</script>