我有一个复杂的对象,为简洁起见,对象的结构是这样的:
{
Sample: [{
Model: {
Id: "1"
},
Collection: [{
Id: "1"
}]
}]
}
数据表可以很好地呈现模型数据。但是,在尝试访问集合时,表格不会输出数据。
<template>
<el-table :data="Sample" highlight-current-row :row-class-name="tableRow" stripe :default-sort="{ prop: 'Sample.Id, order: 'descending'}">
<el-table-column type="expand">
<el-row :gutter="20" v-for="property in Collection">
<el-col :span="24"><div>Id: {{ property.Id }}</div></el-col>
</el-row>
</el-table-column>
<el-table-column prop="Model.Id" label="Id" width="300"></el-table-column>
</el-table>
</template>
绑定到表的数据是否会忽略循环?我能够在绑定期间作为道具进行访问,数据正在发送,但是当添加循环时,数据不会输出。