fixed ##264, logo lädt seite neu
This commit is contained in:
parent
2daa412d3c
commit
df707f28bb
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<v-app-bar app clipped-left clipped-right color="blue accent-4" class="elevation-4" dark dense>
|
||||
<v-btn icon to="/login">
|
||||
<v-btn icon @click="reload()">
|
||||
<v-img src="@/assets/logo-64.png" contain height="40"></v-img>
|
||||
</v-btn>
|
||||
<v-toolbar-title>Flaschengeist</v-toolbar-title>
|
||||
|
@ -11,7 +11,7 @@
|
|||
<v-btn icon v-if="isGastro" disabled>
|
||||
<v-icon>{{gastro}}</v-icon>
|
||||
</v-btn>
|
||||
<v-btn icon v-if="isBar" disabled>
|
||||
<v-btn icon v-if="isBar" :to="{name: 'geruecht'}">
|
||||
<v-icon>{{local_bar}}</v-icon>
|
||||
</v-btn>
|
||||
<v-btn icon v-if="isUser" disabled>
|
||||
|
@ -42,7 +42,10 @@ export default {
|
|||
...mapGetters(['isBar', 'isFinanzer', 'isUser', 'isLoggedIn', 'isGastro'])
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['logout'])
|
||||
...mapActions(['logout']),
|
||||
reload() {
|
||||
location.reload()
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
</v-toolbar-items>
|
||||
</v-toolbar>
|
||||
<v-dialog v-model="overlay">
|
||||
<v-container>
|
||||
<v-card>
|
||||
<v-card-title>Entsperre Baransicht</v-card-title>
|
||||
<v-card-text>
|
||||
|
@ -37,11 +36,10 @@
|
|||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer/>
|
||||
<v-btn @click="overlay = false">Abbrechen</v-btn>
|
||||
<v-btn @click="doUnlock">Entsperren</v-btn>
|
||||
<v-btn text @click="overlay = false">Abbrechen</v-btn>
|
||||
<v-btn text @click="doUnlock">Entsperren</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-container>
|
||||
</v-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue