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.
 
 
 
 
 
 

48 lines
855 B

<template>
<v-app>
<the-header>
<template #leftDrawerIcon>
<v-app-bar-nav-icon @click="drawerLeft = !drawerLeft" />
</template>
</the-header>
<v-navigation-drawer
v-model="drawerLeft"
app
clipped
color=""
>
<the-side-bar />
</v-navigation-drawer>
<v-content>
<v-container
fluid
fill-height
>
<v-layout
justify-center
>
<v-flex fill-height>
<nuxt />
</v-flex>
</v-layout>
</v-container>
</v-content>
</v-app>
</template>
<script>
import TheSideBar from '~/components/organisms/TheSideBar'
import TheHeader from '~/components/organisms/TheHeader'
export default {
components: {
TheSideBar,
TheHeader
},
data: () => ({
drawerLeft: false
})
}
</script>