Front 3 gadi atpakaļ
vecāks
revīzija
bb29bb54b4
1 mainītis faili ar 11 papildinājumiem un 8 dzēšanām
  1. 11 8
      Website/pages/debug.vue

+ 11 - 8
Website/pages/debug.vue

@@ -14,19 +14,22 @@
         <span>Device Type: {{ device._parsed.category }}</span><br>
       </v-card-text>
       <v-card-actions>
-          <v-spacer />
-          <v-btn><v-icon small style="margin-right: 0.25em;">mdi-content-copy</v-icon>Copy</v-btn>
+        <v-spacer />
+        <v-btn>
+          <v-icon small style="margin-right: 0.25em;">mdi-content-copy</v-icon>Copy
+        </v-btn>
       </v-card-actions>
     </v-card>
   </div>
 </template>
 
 <script>
-export default {
+  export default {
     data() {
-        return {
-            device: this.$ua,
-        }
+      return {
+        device: this.$ua,
+      }
     }
-}
-</script>
+  }
+
+</script>