mirror of
https://github.com/yangzongzhuan/RuoYi-Vue3.git
synced 2025-09-28 15:22:42 +00:00
10 lines
219 B
Vue
10 lines
219 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>
|