mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-29 20:54:19 +00:00
26 lines
397 B
Vue
26 lines
397 B
Vue
<template>
|
|
<div class="spell">
|
|
<Spell />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Spell from '@theme/components/Spell.vue'
|
|
|
|
export default {
|
|
name: 'SpellLayout',
|
|
|
|
components: {
|
|
Spell
|
|
},
|
|
|
|
mounted () {
|
|
this.$store.commit('setHasRightDrawer', false)
|
|
this.$store.commit('setRightDrawer', false)
|
|
this.$store.commit('setInRightDrawer', null)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|