Files
Yi.Framework/Yi.RuoYi.Vue3/src/views/tool/swagger/index.vue
2023-02-04 18:06:42 +08:00

10 lines
210 B
Vue

<template>
<i-frame v-model:src="url"></i-frame>
</template>
<script setup>
import iFrame from '@/components/iFrame'
const url = ref(import.meta.env.VITE_APP_BASE_API + "/swagger-ui/index.html")
</script>