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.
 
 
 
 
 
 

24 lines
391 B

<template>
<v-app>
<the-header />
<v-main>
<v-container fluid fill-height>
<v-layout justify-center>
<v-flex>
<nuxt />
</v-flex>
</v-layout>
</v-container>
</v-main>
</v-app>
</template>
<script>
import TheHeader from '~/components/layout/TheHeader'
export default {
components: {
TheHeader
}
}
</script>