You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
333 B

2 years ago
  1. <template>
  2. <v-app>
  3. <NavBar />
  4. <v-main>
  5. <Nuxt />
  6. </v-main>
  7. </v-app>
  8. </template>
  9. <script>
  10. import NavBar from "../components/NavBar.vue";
  11. export default {
  12. name: "redirect",
  13. components: {
  14. NavBar,
  15. },
  16. };
  17. </script>
  18. <style lang="scss">
  19. html,
  20. body {
  21. // overflow-x: hidden;
  22. }
  23. </style>