In my vue app, I have an array of objects which I want to render as a list. Within each object, there is a 'parent' property which contains info about who the parent is thereby giving us a hierarchical data structure. However, I am unable to show this hierarichal list. I tried creatin a tree by transforming the data but my code seems bugged.
You can see my attempted version here: http://jsbin.com/pewusiyete/edit?html,js,console,output
Code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id="app">
<ul>
<li v-for="item in list">
<a v-bind:href="item.value">{{item.label}}</a>
</li>
</ul>
{{tree}}
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
<script>
new Vue({
el:'#app',
data:{
list:[
{
"label":"Parks & Gardens",
"type":"place",
"value":"parks-gardens",
"id":"0CNYF4qh0aaYi2XLGCfG"
},
{
"label":" Art & Craft",
"type":"product",
"value":"art-craft",
"id":"4TfXwraLAJX9K5WeIBT5"
},
{
"label":"Monuments",
"type":"place",
"value":"monuments",
"id":"4mVxy4QEplxTnf6NwpIf"
},
{
"label":"Books",
"type":"book",
"value":"books",
"id":"4oVqbEDhPSYqaTDn4xMV"
},
{
"label":"Sports Academies",
"type":"place",
"value":"sports-academies",
"id":"H7GkAF0Hfdu3OoHBYyQY"
},
{
"label":"Store",
"type":"place",
"value":"store",
"id":"Ki4YjRNe4HmZWOCOpg9K"
},
{
"label":"Tennis Academies",
"parent":"sports-academies",
"type":"place",
"value":"tennis-academies",
"id":"N89adEZwHfSGMQiq1R5f"
},
{
"label":"Toy Stores",
"type":"place",
"parent":"stores",
"value":"toy-stores",
"id":"Oj6QgO0S0Z6AFHvrr2ZH"
},
{
"label":"Electronics",
"type":"product",
"value":"electronics",
"id":"UuztFKZrsw3vcciKaj8k"
},
{
"label":"Tech",
"type":"product",
"value":"tech",
"id":"WuqiVSXxmlCCQ5usAUNZ"
},
{
"label":"Book Stores",
"type":"place",
"parent":"stores",
"value":"book-stores",
"id":"ZmXlJ12jJROGeHjYcwOT"
},
{
"label":" Online Stores",
"type":"commerce",
"value":"online-stores",
"id":"cIRSVPcqSDr6WfuRe4OX"
},
{
"label":"Play Areas",
"type":"place",
"value":"play-areas",
"id":"fEk3dcKprq9Hd8rSgiG3"
},
{
"label":"Toys",
"type":"product",
"value":"toys",
"id":"rJTpw2V9apxe9jQjLTOS"
},
{
"label":"Stores",
"type":"place",
"value":"stores",
"id":"ZmXlJ12jJROGeHjYcwOH"
}
]
},
computed: {
newitem: function () {
return this.list.reduce(function(p,c) {
p[c.value] = c;
c.children = [];
return p;
}, {});
},
tree: function () {
return this.list.reduce(function(p,c) {
console.log(c.parent)
if (c.parent = 'undefined') {
p = c;
} else {
newitem[c.parent].children.push(c);
}
return p;
}, {});
}
}
});
</script>
</body>
</html>