2020-03-26 19:04:23 +01:00
|
|
|
<template>
|
|
|
|
|
<div class="spell">
|
2020-04-05 14:38:20 +02:00
|
|
|
<Breadcrumb />
|
2020-03-26 19:04:23 +01:00
|
|
|
<Spell />
|
2020-04-15 16:27:16 +02:00
|
|
|
<Edit />
|
2020-03-26 19:04:23 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-04-05 14:38:20 +02:00
|
|
|
import Breadcrumb from '@theme/components/Breadcrumb'
|
|
|
|
|
import Spell from '@theme/components/Spell'
|
2020-04-15 16:27:16 +02:00
|
|
|
import Edit from '@theme/components/Edit'
|
2020-03-26 19:04:23 +01:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'SpellLayout',
|
|
|
|
|
|
|
|
|
|
components: {
|
2020-04-05 14:38:20 +02:00
|
|
|
Breadcrumb,
|
2020-04-15 16:27:16 +02:00
|
|
|
Spell,
|
|
|
|
|
Edit
|
2020-04-02 14:20:33 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
mounted () {
|
|
|
|
|
this.$store.commit('setHasRightDrawer', false)
|
2020-04-11 18:01:59 +02:00
|
|
|
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
2020-04-02 14:20:33 +02:00
|
|
|
this.$store.commit('setInRightDrawer', null)
|
2020-03-26 19:04:23 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|