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