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/MagicItemLayout.vue
2020-04-15 16:27:16 +02:00

32 lines
572 B
Vue

<template>
<div class="magic-item">
<Breadcrumb />
<MagicItem />
<Edit />
</div>
</template>
<script>
import Breadcrumb from '@theme/components/Breadcrumb'
import MagicItem from '@theme/components/MagicItem'
import Edit from '@theme/components/Edit'
export default {
name: 'MagicItemLayout',
components: {
Breadcrumb,
MagicItem,
Edit
},
mounted () {
this.$store.commit('setHasRightDrawer', false)
this.$store.commit('setRightDrawer', false)
this.$store.commit('setInRightDrawer', null)
}
}
</script>
<style>
</style>