I have a vuejs application and would like to track visitors to my app using freshworks crm. I followed these steps:
To add the script in the header tag, i used the following code, (since i cant edit index.html code directly):
in App.vue
mounted() {
let freshCRMScript = document.createElement('script')
freshCRMScript.setAttribute('src', '//cdn.freshmarketer.in/30044640/32601.js')
document.head.appendChild(freshCRMScript)
},
I add external js for cookiebot and payment gateway in the same manner and it works;
Finally, to test if integration is successful with my app, i used verification field on this link:
But it shows ‘Not integrated’.
How to integrate Freshworks CRM with Vuejs App?
Thanks in anticipation