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