debug.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div>
  3. <!-- Top Section // "Sections" Card -->
  4. <v-card max-width="600px" class="rounded-lg">
  5. <v-card-title style="padding-bottom: 0">Debug Information</v-card-title>
  6. <v-card-text style="text-align: left;">
  7. <!-- Gather Browser Information -->
  8. <span><b>Browser Information:</b></span><br>
  9. <span>Browser: {{ device._parsed.name }}</span><br>
  10. <span>Browser Vendor: {{ device._parsed.vendor }}</span><br>
  11. <span>Version: {{ device._parsed.version }}</span><br>
  12. <span>Operating System: {{ device._parsed.os }}</span><br>
  13. <span>Operating System Version: {{ device._parsed.os_version }}</span><br>
  14. <span>Device Type: {{ device._parsed.category }}</span><br>
  15. </v-card-text>
  16. <v-card-actions>
  17. <v-spacer />
  18. <v-btn>
  19. <v-icon small style="margin-right: 0.25em;">mdi-content-copy</v-icon>Copy
  20. </v-btn>
  21. </v-card-actions>
  22. </v-card>
  23. </div>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. device: this.$ua,
  30. }
  31. }
  32. }
  33. </script>