app.vue 460 B

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