1 回答

TA貢獻1851條經(jīng)驗 獲得超4個贊
嵌套子數(shù)據(jù)是一個只有一個對象和一個重復(fù)屬性的數(shù)組name。它應(yīng)該是一個對象數(shù)組:
data: [{
name: 'Frozen Yogurt',
childs: [
{ name: 'one' },
{ name: 'two' },
{ name: 'three' }
]
}, {
name: 'Ice cream sandwich',
childs: [
{ name: 'four' },
{ name: 'five' },
]
}, {
name: 'Eclair',
}]
由于q-table需要一組數(shù)據(jù),因此您不需要v-for在內(nèi)表上使用 a (與外表相同)。刪除v-for并將 設(shè)為data當前外行的childs對象:
<q-tr :props="props" v-show="props.expand">
<q-table
hide-header
hide-bottom
:data="props.row.childs"
:columns="columnsChilds"
style="background:yellow; min-width:300px">
</q-table>
</q-tr>
添加回答
舉報