1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 12:44:20 +00:00
5e-drs/docs/.vuepress/theme/layouts/MagicItemLayout.vue

33 lines
572 B
Vue
Raw Normal View History

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