endpoints.vue 515 B

1234567891011121314151617181920212223
  1. <template>
  2. <div style="line-height: 2rem">
  3. <h2 class="primary--text">
  4. {{ $vuetify.lang.t("$vuetify.api.endpoints.title") }}
  5. </h2>
  6. <div class="mt-4">
  7. {{ $vuetify.lang.t("$vuetify.api.endpoints.subtitle") }}
  8. <a :href="endpointUrl" target="_blank" v-text="endpointUrl" />
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. let apiUrl = process.env.apiUrl;
  14. export default {
  15. data() {
  16. return {
  17. apiUrl: apiUrl,
  18. endpointUrl: apiUrl + "/swagger/index.html",
  19. };
  20. },
  21. };
  22. </script>