"bloques": [
{
"id": 1,
"banner": "Banner_Doble_Megas_terminales2.jpg",
"titulo": "Blindaje",
"activo": 1,
"contenidos": [
{
"id": 1,
"subseccion": 0,
"icon": "fa fa-copy",
"nombre": "Guía Rápida",
"pdf": "pymes.pdf",
"imagenes": "",
"bloque_id": 1,
"ruta": null,
"activo": 1
},
I can easily reccure the blocks in the following way:
<tr v-for="(bloque, index) in bloques" :key="index">
All right there, my problem is when I want to access contenidos
try to use it:
<tr v-for="(bloque, index) in bloques.contenidos" :key="index">
then, how should one go after another so that the continuity of the array follows.