Files
DiceCloud/app/imports/ui/creature/character/CharacterSheetRightDrawer.vue
2021-02-11 15:48:23 +02:00

33 lines
541 B
Vue

<template lang="html">
<v-navigation-drawer
v-model="drawer"
app
right
clipped
>
<log-tab :creature-id="$route.params.id" />
</v-navigation-drawer>
</template>
<script>
import LogTab from '/imports/ui/log/CharacterLog.vue';
export default {
components: {
LogTab,
},
computed: {
drawer: {
get () {
return this.$store.state.rightDrawer;
},
set (value) {
this.$store.commit('setRightDrawer', value);
},
},
},
}
</script>
<style lang="css" scoped>
</style>