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