Welcome to mirror list, hosted at ThFree Co, Russian Federation.

endpoints.vue « docs « pages « Website - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2933af14fab0d9d6a12756bbb5abee3012c219da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div style="line-height: 3rem">
    <h1 class="primary--text">Available Endpoints</h1>
    List of available endpoints is available here:<br />
    <a :href="endpointUrl" target="_blank" v-text="endpointUrl" />
  </div>
</template>

<script>
let apiUrl = process.env.apiUrl;
export default {
  data() {
    return {
      apiUrl: apiUrl,
      endpointUrl: apiUrl + "/swagger/index.html",
    };
  },
};
</script>