mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			132 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			132 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* global bus */
 | 
						|
export default {
 | 
						|
  methods: {
 | 
						|
    showAlert(message) {
 | 
						|
      bus.$emit('newToastMessage', message);
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 |