8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
|
export default {
|
||
|
methods: {
|
||
|
useInstallationName(str = '', installationName) {
|
||
|
return str.replace(/Chatwoot/g, installationName);
|
||
|
},
|
||
|
},
|
||
|
};
|