1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 04:34:19 +00:00
5e-drs/docs/.vuepress/theme/layouts/SpellLayout.vue
2020-04-15 16:27:16 +02:00

32 lines
574 B
Vue

<template>
<div class="spell">
<Breadcrumb />
<Spell />
<Edit />
</div>
</template>
<script>
import Breadcrumb from '@theme/components/Breadcrumb'
import Spell from '@theme/components/Spell'
import Edit from '@theme/components/Edit'
export default {
name: 'SpellLayout',
components: {
Breadcrumb,
Spell,
Edit
},
mounted () {
this.$store.commit('setHasRightDrawer', false)
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
this.$store.commit('setInRightDrawer', null)
}
}
</script>
<style>
</style>