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.

16 lines
205 B

3 years ago
  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. components: {
  11. TheHeader
  12. },
  13. }
  14. </script>