mirror of
https://github.com/yangzongzhuan/RuoYi-Vue3.git
synced 2026-01-23 01:24:58 +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>
|