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

documentation.vue « pages « Website - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff21a689600a98b3a1df40e068178385118a8dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<template>
  <div>
    <!--   Top Section // "Sections" Card   -->
    <v-card max-width="600px" class="rounded-lg">
      <v-card-title style="padding-bottom: 0">Sections</v-card-title>
      <v-list>
        <!--   Dynamically Generate Links From Below   -->
        <v-list-item v-for="(item, i) in links" :key="i" router :to="item.to">
          <v-list-item-icon>
            <v-icon v-text="item.icon" />
          </v-list-item-icon>
          <v-list-item-title style="text-align: left">
            <v-list-item-title v-text="item.text" />
          </v-list-item-title>
        </v-list-item>
      </v-list>
    </v-card>

    <!--   Child Pages // Card   -->
    <v-card
      max-width="600px"
      class="rounded-lg"
      style="margin: 1em; padding: 0.75em; text-align: left"
    >
      <NuxtChild />
    </v-card>
  </div>
</template>

<script>
export default {
  data() {
    return {
      //---   Links To Generate Above    ---//
      links: [
        {
          text: "Usage Rights",
          icon: "mdi-book-open-variant",
          to: "/documentation/usage-rights",
        },
        {
          text: "URL Information",
          icon: "mdi-web",
          to: "/documentation/url",
        },
        {
          text: "Available Endpoints",
          icon: "mdi-transit-connection-variant",
          to: "/documentation/endpoints",
        },
        {
          text: "Basic Fetching Tutorial",
          icon: "mdi-school",
          to: "/documentation/fetching",
        },
      ],
    };
  },
};
</script>