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.

50 lines
947 B

5 years ago
5 years ago
  1. <template>
  2. <base-layout>
  3. <template #leftDrawerIcon>
  4. <v-app-bar-nav-icon @click="drawerLeft = !drawerLeft" />
  5. </template>
  6. <template #leftDrawer>
  7. <v-navigation-drawer
  8. v-model="drawerLeft"
  9. app
  10. clipped
  11. color=""
  12. >
  13. <side-bar-left />
  14. </v-navigation-drawer>
  15. </template>
  16. <template #content>
  17. <v-content>
  18. <v-container
  19. fluid
  20. fill-height
  21. >
  22. <v-layout
  23. justify-center
  24. >
  25. <v-flex fill-height>
  26. <nuxt />
  27. </v-flex>
  28. </v-layout>
  29. </v-container>
  30. </v-content>
  31. </template>
  32. </base-layout>
  33. </template>
  34. <script>
  35. import BaseLayout from '~/layouts/BaseLayout'
  36. import SideBarLeft from '~/components/organisms/SideBarLeft'
  37. export default {
  38. components: {
  39. BaseLayout,
  40. SideBarLeft
  41. },
  42. data: () => ({
  43. drawerLeft: false
  44. })
  45. }
  46. </script>