mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	- Add config for TailwindCSS - Enable HMR - Add a config in LocalStorage for Dark Mode Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			368 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			368 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="flex items-center justify-center p-8">
 | 
						|
    <h6
 | 
						|
      class="block text-base text-center w-100 text-slate-800 dark:text-slate-300"
 | 
						|
    >
 | 
						|
      <span class="mr-3">{{ message }}</span>
 | 
						|
      <span class="spinner" />
 | 
						|
    </h6>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    message: { type: String, default: '' },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |