mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-19 21:01:48 +08:00
9 lines
132 B
JavaScript
9 lines
132 B
JavaScript
/* global bus */
|
|
export default {
|
|
methods: {
|
|
showAlert(message) {
|
|
bus.$emit('newToastMessage', message);
|
|
},
|
|
},
|
|
};
|