How To Add Jitsi Meet To Vuejs
I have loaded the jitsi meet script in the body of my public.html, and i have a component as follows:
<
Solution 1:
You could disable the linting error, but I would recommend specifying it as a global variable instead.
.eslintrc.js
module.exports = {
globals: {
JitsiMeetExternalAPI: true
}
}
Solution 2:
It should work if you prefix the global with window
:
const api = new window.JitsiMeetExternalAPI(domain, options);
Post a Comment for "How To Add Jitsi Meet To Vuejs"