疯狂的狮子li
2022-01-13 ff4a429136ed859d3c121b164ab3dc9a4321c89b
ruoyi-ui/src/views/tool/swagger/index.vue
对比新文件
@@ -0,0 +1,15 @@
<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>