Files
fe.ems.vue3/src/views/tool/swagger/index.vue
2023-10-16 17:12:24 +08:00

14 lines
334 B
Vue

<script lang="ts" setup>
import LinkiFrame from '@/components/LinkiFrame/index.vue';
import { ref } from 'vue';
const baseUrl = import.meta.env.VITE_API_BASE_URL;
const url = ref<string>(`${baseUrl}/swagger-ui/index.html`);
</script>
<template>
<LinkiFrame :src="url"></LinkiFrame>
</template>
<style lang="less" scoped></style>