Files
platform/ruoyi-ui/src/views/tool/swagger/index.vue
2025-02-13 17:22:31 +08:00

16 lines
270 B
Vue

<template>
<i-frame :src="url" />
</template>
<script>
import iFrame from "@/components/iFrame/index";
export default {
name: "Swagger",
components: { iFrame },
data() {
return {
url: process.env.VUE_APP_BASE_API + "/doc.html"
};
},
};
</script>