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.

29 lines
433 B

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