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