0👍
You cannot have both data and props with the same name. Remove event
from your data. And you can give a default value of your props as follow.
props : {
...
event : {
type : 'Object',
default : function(){
return {
name : ''
// and other fields
};
}
}
}
- [Vuejs]-Laravel-Twilio Video Chat 'getUserMedia' error
- [Vuejs]-Dynamically Display Remotely Populated Dropdown in Vue.JS
Source:stackexchange.com