Files
his/openhis-ui-vue3/src/views/tool/swagger/index.vue
guorui dad6d41cbc 1
2025-02-19 10:29:04 +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>