mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			420 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			420 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div>
 | |
|     <div class="ui-snackbar">
 | |
|       <div class="ui-snackbar-text">{{ message }}</div>
 | |
|     </div>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| 
 | |
| export default {
 | |
|   props: {
 | |
|     message: String,
 | |
|     showButton: Boolean,
 | |
|     duration: {
 | |
|       type: [String, Number],
 | |
|       default: 3000,
 | |
|     },
 | |
|   },
 | |
|   data() {
 | |
|     return {
 | |
|       toggleAfterTimeout: false,
 | |
|     };
 | |
|   },
 | |
|   methods: {
 | |
|   },
 | |
|   mounted() {
 | |
|   },
 | |
| };
 | |
| </script>
 | 
