mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-31 05:24:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <main class="page">
 | |
|     <div class="theme-default-content">
 | |
|       <h1>{{ $page.title }}</h1>
 | |
|     </div>
 | |
|     <Content />
 | |
| 
 | |
|   </main>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
| }
 | |
| </script>
 | |
| 
 | |
| <style lang="stylus">
 | |
| @require '../styles/wrapper.styl'
 | |
| 
 | |
| .page
 | |
|   padding-bottom 2rem
 | |
|   display block
 | |
| 
 | |
| </style>
 | 
