[Vuejs]-After click VUE method receives propert only of last element

0👍

The problem was that I returned reference but not new object. So I cloned instance by

let info = JSON.parse(JSON.stringify(this.sources[source.source_type]));

Thank’s for help!

Leave a comment