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.
 
 
 
 
 
 

37 lines
622 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>
<nuxt />
</v-app>
</template>
<script>
import TheSideBar from '~/components/organisms/TheSideBar'
import TheHeader from '~/components/organisms/TheHeader'
export default {
components: {
TheSideBar,
TheHeader
},
data() {
return {
drawerLeft: false
}
}
}
</script>