mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	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>
 |