I have an Array
with an Object
with multiple Objects
in them with the use of Vue.js
.
See it like this:
tree: [{
stick: {
leaf:{
name: "Vincent"
},
sheet:{
name: "Charles"
},
paper:{
name: "Harry"
}
}
]}
Now my question is: How do I reach the name of a leaf?