debug.vue 934 B

12345678910111213141516171819202122232425262728
  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. <!-- Dynamically Generate Links From Below -->
  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>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. device: this.$ua,
  24. }
  25. }
  26. }
  27. </script>