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