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.

17 lines
234 B

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