1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00

you shall not pass... or maybe yes

This commit is contained in:
Maxime Moraine 2020-04-18 15:27:29 +02:00
parent 466e4efc23
commit 6237f0e6a2
6 changed files with 71 additions and 2 deletions

View file

@ -99,7 +99,7 @@
<v-divider/>
<div class="pa-2 d-flex">
<v-spacer/>
<v-btn @click.stop="$vuetify.theme.dark = !$vuetify.theme.dark" icon>
<v-btn @click.stop="setIsThemeDark" icon>
<v-icon v-html="$vuetify.theme.dark ? 'mdi-brightness-4' : 'mdi-brightness-7'"></v-icon>
</v-btn>
</div>
@ -191,6 +191,10 @@ export default {
},
toggleAboutDialog () {
this.$store.commit('setIsOpenAboutDialog', !this.$store.state.isOpenAboutDialog)
},
setIsThemeDark () {
this.$vuetify.theme.dark = !this.$vuetify.theme.dark
this.$store.commit('setIsThemeDark', this.$vuetify.theme.dark)
}
}
}