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