0π
β
As I stated here, Due to a syntax error on my implementation:
[...]
<md-table-cell v-for="(val, i) in item" :key="val.id" v-if="(i !== 'id') && (i !==
'estensione_garanzia') && (i !== 'note')"
[...]
The attribute :key="val.id"
is misconfigured. In this case Iβm iterating an array of objects β without nested of them β so thereβs no sub-property id
on selected element. For more information the official doc shows a complete example
By changing the attribute like this:
:key="val.id"
Everything works fine.
π€user7554217
Source:stackexchange.com