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

<template>
<base-layout>
<template #content>
<v-content>
<v-container
fluid
fill-height
>
<v-layout
justify-center
>
<v-flex>
<nuxt />
</v-flex>
</v-layout>
</v-container>
</v-content>
</template>
</base-layout>
</template>
<script>
import BaseLayout from '~/layouts/BaseLayout'
export default {
components: {
BaseLayout
}
}
</script>