As you can see, I use the toggleRecorder method to start/stop the video recorder, It works good, but when I stop the video the v-model is never populated with the video data, I've tried to listen to the @close and @input events but nothing is triggered.
Can you tell me please what am I doing bad? Thanks a lot
For the v-model to work, you need to call the snap method instead of the stop.
Stop() will only stops the camera but snap will save the picture into the v-model
Hi, I'm currently trying to use your component in the following way.
Template:
<v-easy-camera v-model="video" ref="recorder" @input="log" @close="log"></v-easy-camera>
Script:
As you can see, I use the toggleRecorder method to start/stop the video recorder, It works good, but when I stop the video the v-model is never populated with the video data, I've tried to listen to the @close and @input events but nothing is triggered.
Can you tell me please what am I doing bad? Thanks a lot