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.

20 lines
342 B

  1. <template>
  2. <v-app>
  3. <the-header />
  4. <nuxt />
  5. <the-footer />
  6. </v-app>
  7. </template>
  8. <script>
  9. import TheFooter from '@/components/organisms/layout/TheFooter'
  10. import TheHeader from '@/components/organisms/layout/TheHeader'
  11. export default {
  12. middleware: ['check-auth'],
  13. components: {
  14. TheFooter,
  15. TheHeader
  16. }
  17. }
  18. </script>