Front 3 anni fa
parent
commit
9d8a13b2a4
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      Website/pages/documentation.vue

+ 5 - 0
Website/pages/documentation.vue

@@ -1,8 +1,11 @@
 <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" />
@@ -14,6 +17,7 @@
       </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>
@@ -26,6 +30,7 @@
   export default {
     data() {
       return {
+        //---   Links To Generate Above    ---//
         links: [{
             text: 'API Usage Rights',
             icon: 'mdi-book-open-variant',