问题数据与Vue中的ant table复选框绑定

时间:2019-08-08 06:12:57

标签: vue.js ant-design-pro

我是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

  });

0 个答案:

没有答案