1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 05:04:21 +00:00
5e-drs/docs/.vuepress/theme/layouts/MagicItemLayout.vue

30 lines
507 B
Vue
Raw Normal View History

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