Skip to content
Advertisement

Cannot set property ‘srcObject’ of null in Vue.Js

I am using vue.js with element-ui library and I have this problem where I need to show this dialog component to be able to show the camera and the user’s audio but I have the following error in console

TypeError: Cannot set property ‘srcObject’ of undefined”

As you can see, first I am calling the mounted instance where it collects the video and audio information of the user and in the show dialog function I am recovering the data.

Here is the code:

JavaScript

Advertisement

Answer

You need to use Arrow functions as callback for your $nextTick, otherwise the this variable inside the callback will not be the component object

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement