Skip to content

Commit

Permalink
Fix messed up App code
Browse files Browse the repository at this point in the history
  • Loading branch information
Soleone committed Mar 21, 2021
1 parent 70ed2a9 commit dcfa964
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@
<v-app-bar-nav-icon @click.stop="drawer = !drawer" class="mr-1"></v-app-bar-nav-icon>
</v-app-bar>

<v-navigation-drawer v-model="drawer" fixed temporary right width="300">
<v-list dense nav>
<v-list-item link to="/">
<v-list-item-icon>
<v-icon>mdi-fencing</v-icon>
</v-list-item-icon>

<v-list-item-content>
<v-list-item-title>Arena</v-list-item-title>
</v-list-item-content>
</v-list-item>

<v-list-group prepend-icon="mdi-video" @click="visitVideos">
<template v-slot:activator>
<v-list-item-title>Videos</v-list-item-title>
</template>
Expand Down Expand Up @@ -101,6 +114,19 @@
</v-list-item-content>
</v-list-item>
</v-list>
</v-navigation-drawer>

<v-main>
<v-alert
v-if="appStatus.visible"
:color="appStatus.color"
:type="appStatus.type"
dismissible
class="ma-3"
>
{{ appStatus.message }}
</v-alert>
<router-view :key="$route.fullPath"></router-view>

<v-snackbar
v-model="status.visible"
Expand All @@ -109,6 +135,7 @@
>{{ status.message }}</v-snackbar
>
</v-main>

<v-footer class="d-flex justify-center">
<Tooltip tooltip="See what changed between versions" top>
<FooterBtn
Expand Down

0 comments on commit dcfa964

Please sign in to comment.