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.
jin_ji_hu/src/views/tool/swagger/index.vue

16 lines
283 B

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