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: e95f54203a7b3a205388a20dc660c70bddc850e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div>
    <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>