app.vue 423 B

123456789101112131415161718192021222324
  1. <template>
  2. <!-- Forms -->
  3. <FormDebug />
  4. <FormOTA />
  5. <NuxtLayout>
  6. <NuxtPage />
  7. <NuxtSnackbar />
  8. </NuxtLayout>
  9. </template>
  10. <script setup lang="ts">
  11. definePageMeta({
  12. head: [
  13. { name: 'meta', content: 'width=480, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,target-densitydpi=device-dpi, user-scalable=no' }
  14. ]
  15. })
  16. </script>
  17. <style>
  18. html, body {
  19. overscroll-behavior-x: none;
  20. }
  21. </style>