mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 f214c9c47c
			
		
	
	f214c9c47c
	
	
	
		
			
			Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			276 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			276 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: String,
 | |
|     message: String,
 | |
|     buttonText: String,
 | |
|   },
 | |
| };
 | |
| </script>
 |