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.
 
 
 
 
 
 

39 lines
688 B

<template>
<base-layout>
<template #leftDrawerIcon>
<v-app-bar-nav-icon @click="drawerLeft = !drawerLeft" />
</template>
<template #leftDrawer>
<v-navigation-drawer
v-model="drawerLeft"
app
clipped
color=""
>
<side-bar-left />
</v-navigation-drawer>
</template>
<template #content>
<nuxt />
</template>
</base-layout>
</template>
<script>
import BaseLayout from '~/layouts/BaseLayout'
import SideBarLeft from '~/components/organisms/SideBarLeft'
export default {
components: {
BaseLayout,
SideBarLeft
},
data() {
return {
drawerLeft: false
}
}
}
</script>