大唐会议项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
298 B

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