mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-30 21:24:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div>
 | |
|     {{contents}}
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   name: 'HomeTableOfContents',
 | |
| 
 | |
|   data () {
 | |
|     return {
 | |
|       contents: null
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   mounted () {
 | |
|     console.log(this.$site.themeConfig)
 | |
|     this.contents = this.$site.themeConfig.sidebar
 | |
|   }
 | |
| }
 | |
| </script>
 | 
