13 lines
293 B
Vue
Raw Normal View History

2022-11-22 21:55:31 +08:00
<template>
<ContentWrap>
<IFrame :src="src" />
</ContentWrap>
</template>
2022-11-23 22:26:25 +08:00
<script setup lang="ts" name="Swagger">
2022-07-18 19:06:37 +08:00
import { ref } from 'vue'
2022-11-22 21:55:31 +08:00
import { IFrame } from '@/components/IFrame'
2022-07-18 19:06:37 +08:00
const BASE_URL = import.meta.env.VITE_BASE_URL
2023-01-16 22:58:56 +08:00
const src = ref(BASE_URL + '/swagger-ui')
2022-07-18 19:06:37 +08:00
</script>