mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-01 21:03:46 +08: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);
|
|
},
|
|
},
|
|
};
|