getArray(data){ for (var i in data) { if(data[i].disabled){ data[i].disabled = false } if(data[i].children){ this.getArray(data[i].children); } } },