mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 22:56:52 +01:00 
			
		
		
		
	 b35eb77a70
			
		
	
	
		b35eb77a70
		
			
		
	
	
	
	
		
			
			This supports moving away from multiple-theme support in the Panel since that is no longer going to be offered.
		
			
				
	
	
		
			15 lines
		
	
	
		
			288 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			288 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|     <input type="hidden" name="_token" v-bind:value="X_CSRF_TOKEN" />
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
|     export default {
 | |
|         name: 'csrf',
 | |
|         data: function () {
 | |
|             return {
 | |
|                 X_CSRF_TOKEN: window.X_CSRF_TOKEN,
 | |
|             };
 | |
|         },
 | |
|     }
 | |
| </script>
 |