Sign in

nx / creditNx · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • creditNx
  • ruoyi-ui
  • src
  • views
  • tool
  • swagger
  • index.vue
  • 封装iframe组件
    3f05ed6f
    RuoYi authored
    2021-06-17 20:17:42 +0800  
    Browse Code ยป
index.vue 298 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 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 + "/swagger-ui/index.html"
    };
  },
};
</script>