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.

30 lines
493 B

  1. <template>
  2. <base-layout>
  3. <template #content>
  4. <v-content>
  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-content>
  18. </template>
  19. </base-layout>
  20. </template>
  21. <script>
  22. import BaseLayout from '~/layouts/BaseLayout'
  23. export default {
  24. components: {
  25. BaseLayout
  26. }
  27. }
  28. </script>