Reputation: 1
i am trying to use webex javascript sdk with my vue3 project but not able to use it correctly while it is running correctly while using vanila javascript but not with vue3. here is my code:
this.callings = await Calling.init({ webexConfig, callingConfig });
// await new Promise(resolve => setTimeout(resolve, 1000));
this.callings.on("ready", async () => {
await this.callings.register();
console.log('ddd', this.callings.callingClient.getLines());
this.line = Object.values(this.callings.callingClient.getLines())[0];
this.line.on("registered", () => console.log("Line registered"));
});
},
i tried to contact with support but they dont know vue3 so did not able to solve my problem.
Upvotes: 0
Views: 33