Help me understand this issue that Vue is displaying, I am not sure what is going on.
This is my progress element:
<el-progress :percentage="percentCompleted" v-show="uploadingVideo"></el-progress>
data() {
return{
percentCompleted: 0,
}
}
Here is my function:
onUploadProgress: function(progressEvent) {
this.percentCompleted = Math.round(
(progressEvent.loaded * 100) / progressEvent.total
);
this.$forceUpdate();
}.bind(this)
};