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.

24 lines
391 B

2 years ago
  1. <template>
  2. <v-app>
  3. <the-header />
  4. <v-main>
  5. <v-container fluid fill-height>
  6. <v-layout justify-center>
  7. <v-flex>
  8. <nuxt />
  9. </v-flex>
  10. </v-layout>
  11. </v-container>
  12. </v-main>
  13. </v-app>
  14. </template>
  15. <script>
  16. import TheHeader from '~/components/layout/TheHeader'
  17. export default {
  18. components: {
  19. TheHeader
  20. }
  21. }
  22. </script>