27 lines
442 B
Vue

<template>
<v-app dark>
<Navbar />
<v-content>
<v-container fill-height>
<v-row no-gutters justify="center">
<nuxt />
</v-row>
</v-container>
</v-content>
</v-app>
</template>
<script>
import Navbar from '@/components/Navbar'
export default {
components: { Navbar },
}
</script>
<style>
html {
overflow-y: auto;
}
</style>