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