You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return Array.prototype.unshift.apply(this.object, data) // i know this is invalid
return Object.assign(this.object, data);
There are probably more cases. We should gather them all here in this topic, discuss and choose which one are we going to support. Supporting different cases is good, but too many edge cases - not necessarily. We need to be smart about this.
The text was updated successfully, but these errors were encountered:
As @armano2 pointed in #58 we should consider supporting few more cases in this rule:
1. Plugins provided by vuejs team, like:
Vue-router
or Vuex
2. Prototype methods
There are probably more cases. We should gather them all here in this topic, discuss and choose which one are we going to support. Supporting different cases is good, but too many edge cases - not necessarily. We need to be smart about this.
The text was updated successfully, but these errors were encountered: