11 lines
259 B
Vue
11 lines
259 B
Vue
|
|
<script setup>
|
||
|
|
const apiBaseUrl = import.meta.env.VITE_API_BASE_URL || ''
|
||
|
|
const swaggerUrl = `${apiBaseUrl}/api/docs`
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<a :href="swaggerUrl" target="_blank" rel="noopener">
|
||
|
|
<slot>Open API Documentation →</slot>
|
||
|
|
</a>
|
||
|
|
</template>
|