16 lines
298 B
Vue
Raw Normal View History

2019-10-08 09:14:38 +08:00
<template>
2021-06-17 20:17:42 +08:00
<i-frame :src="url" />
2019-10-08 09:14:38 +08:00
</template>
<script>
2021-06-17 20:17:42 +08:00
import iFrame from "@/components/iFrame/index";
2019-10-08 09:14:38 +08:00
export default {
2019-12-02 09:28:11 +08:00
name: "Swagger",
2021-06-17 20:17:42 +08:00
components: { iFrame },
2019-10-08 09:14:38 +08:00
data() {
return {
2021-06-17 20:17:42 +08:00
url: process.env.VUE_APP_BASE_API + "/swagger-ui/index.html"
2019-10-08 09:14:38 +08:00
};
},
};
</script>