0

我是 vue ant 设计的新手。我在表格复选框中的数据绑定有问题。我正在使用 vue ant 设计表,这里是我的代码

<a-table :columns="columns" :dataSource="data">
        <a-checkbox slot="col01" :checked="true" disabled  />
        <a-checkbox slot="col02" disabled />
</a-table> 

Vue中的列设计

   {
      title: "Col01",
      dataIndex: 'col01',    
      scopedSlots: { customRender: 'col01' }
    },
    {
      title: "Col02",
      dataIndex: 'col02',    
      scopedSlots: { customRender: 'col02' }
    }

Vue中的数据绑定

this.data.push({
    key: id,      
    col01:true,
    col02:element.satus

  });
4

0 回答 0