default.vue 648 Bytes
<template>
  <v-app dark id="main-container">
    <nuxt />
  </v-app>
</template>

<script>
  export default {
    data() {
      return {
        clipped: false,
        drawer: true,
        fixed: false,
        items: [
          { icon: 'apps', title: 'Welcome', to: '/' },
          { icon: 'bubble_chart', title: 'Inspire', to: '/inspire' }
        ],
        miniVariant: false,
        right: true,
        rightDrawer: false,
        title: 'Vuetify.js'
      }
    }
  }
</script>

<style lang="scss" >
  #main-container {
   background-color: $background-black; 
  }
  .toolbar-grey {
    background-color: $toolbar-grey;
  }

</style>