1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 13:14:20 +00:00
5e-drs/docs/.vuepress/theme/components/RightDrawer.vue
2020-04-01 19:34:06 +02:00

46 lines
786 B
Vue

<template>
<v-navigation-drawer class="right-drawer" v-model="rightDrawer" :clipped="$vuetify.breakpoint.lgAndUp" width="300" app right>
<SpellFilters v-if="hasSpellFilters" />
</v-navigation-drawer>
</template>
<script>
import SpellFilters from '@theme/components/SpellFilters.vue'
export default {
name: 'RightDrawer',
components: {
SpellFilters
},
data () {
return {
}
},
computed: {
rightDrawer: {
get () {
return this.$store.state.rightDrawer
},
set (newValue) {
this.$store.commit('setRightDrawer', newValue)
}
},
hasSpellFilters () {
return this.$store.state.inRightDrawer == 'spellFilters'
}
},
mounted () {
},
methods: {
}
}
</script>
<style lang="scss">
</style>