mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 21:50:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
Vue.component("not-found-box", {
 | 
						|
	props: ["message"],
 | 
						|
	template: `<div style="text-align: center; margin-top: 5em;">
 | 
						|
	<div style="font-size: 2em; margin-bottom: 1em"><i class="icon exclamation triangle large grey"></i></div>
 | 
						|
	<p class="comment">{{message}}<slot></slot></p>
 | 
						|
</div>`
 | 
						|
}) |