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

url.vue « docs « pages « Website - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3de11582cd96d3dd01f3aaa9578c34efacd4e6de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div style="line-height: 3rem">
    <h1 class="primary--text">URL Information</h1>
    The API is accessible over the following base URL:<br />
    <a :href="apiUrl" target="_blank" v-text="apiUrl" />
  </div>
</template>

<script>
export default {
  data() {
    return {
      apiUrl: process.env.apiUrl,
    };
  },
};
</script>