<template>
   <v-navigation-drawer app right clipped :width="$vuetify.breakpoint.width/3" bottom>
        <v-list dense>
          <v-list-item>
            <v-list-item-action>
              <v-icon>mdi-exit-to-app</v-icon>
            </v-list-item-action>
            <v-list-item-content>
              <v-list-item-title>Open Temporary Drawer</v-list-item-title>
            </v-list-item-content>
          </v-list-item>
        </v-list>
      </v-navigation-drawer>
</template>