mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			232 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			232 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="row loading-state">
 | |
|     <h6 class="message">{{ message }}<span class="spinner" /></h6>
 | |
|   </div>
 | |
| </template>
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     message: { type: String, default: '' },
 | |
|   },
 | |
| };
 | |
| </script>
 | 
