mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			369 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			369 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="row empty-state">
 | |
|     <h3 class="title">
 | |
|       {{ title }}
 | |
|     </h3>
 | |
|     <p class="message">
 | |
|       {{ message }}
 | |
|     </p>
 | |
|     <slot />
 | |
|   </div>
 | |
| </template>
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     title: { type: String, default: '' },
 | |
|     message: { type: String, default: '' },
 | |
|     buttonText: { type: String, default: '' },
 | |
|   },
 | |
| };
 | |
| </script>
 | 
