mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
export default {
|
|
methods: {
|
|
// eslint-disable-next-line default-param-last
|
|
useInstallationName(str = '', installationName) {
|
|
return str.replace(/Chatwoot/g, installationName);
|
|
},
|
|
},
|
|
};
|