github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/static_source/admin/src/views/Swagger/index.vue (about)

     1  <script setup lang="ts">
     2  
     3  const src: string = (import.meta.env.VITE_API_BASEPATH as string) + '/swagger-ui'
     4  </script>
     5  
     6  <template>
     7    <iframe
     8        :src="src"
     9        style="position: absolute; border: none; width: 100%; height: inherit"
    10        width="100%"
    11        height="100%"
    12        frameborder="0"
    13    >
    14    </iframe>
    15  </template>
    16  
    17  <style lang="less">
    18  
    19  </style>