Hi I use VueJs with TypeScript and I want to loop response result with type Section that have Array of Articles the response looks like:`
{
{
id: 1,
name: "Test",
articles: [
{
id: 1,
name: "Test",
price: 1.0,
quantity: 1
}
]
},
{
id: 1,
name: "Test",
articles: [
{
id: 1,
name: "Test",
price: 1.0,
quantity: 1
}
]
}
}
I tried with v-for but does not recognize id prop and the type is not section but
const section: string | number | boolean | Date | Article[] | undefined