29 lines
508 B
Vue
29 lines
508 B
Vue
<template>
|
|
<v-app>
|
|
<Navbar />
|
|
<v-content>
|
|
<v-container fill-height>
|
|
<v-row no-gutters justify="center">
|
|
<v-col cols="12">
|
|
<nuxt />
|
|
</v-col>
|
|
</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>
|