Template 7 #each dynamic

It would be possible to do something like this:

{{#each categorias}}


{{this.title}} - {{this.key}}
{{#each @root.posts[{{this.key}}]}}
//some html template
{{/each}}

{{/each}}

{{#each @root.posts[‘receita’]}} it works, but I need to get the keys dynamically

below the data object
{
“posts”:{
“receita”:{
“820”:{
“post_id”:820,
“post_type”:“receita”,
“title”:“Flã de chocolate e café light”,
“permalink”:“http://hmg-meu.clubedaana.com.br/receita/fla-de-chocolate-light/”,
“total”:2,
“excerpt”:"",
“button”:false
},
“821”:{
“post_id”:820,
“post_type”:“receita”,
“title”:“Flã de chocolate e café light”,
“permalink”:“http://hmg-meu.clubedaana.com.br/receita/fla-de-chocolate-light/”,
“total”:2,
“excerpt”:"",
“button”:false
}
},
“livro”:{
“1650”:{
“post_id”:1650,
“post_type”:“livro”,
“title”:“Pratos salgados para festas, com Helô Bacellar”,
“permalink”:“http://hmg-meu.clubedaana.com.br/livro/pratos-salgados-para-festas/”,
“total”:2,
“excerpt”:"",
“button”:false
},
“1651”:{
“post_id”:1650,
“post_type”:“livro”,
“title”:“Pratos salgados para festas, com Helô Bacellar”,
“permalink”:“http://hmg-meu.clubedaana.com.br/livro/pratos-salgados-para-festas/”,
“total”:2,
“excerpt”:"",
“button”:false
}
}
},
“categorias”:[
{
“key”:“receita”,
“title”:“Receitas”
},
{
“key”:“livro”,
“title”:“Livros”
}
]
}

No, this won’t work. You need to reformat the data object before passing it to Template7, or use es template instead if it is Router Component http://framework7.io/docs/router-component.html#es-template-literals