0

私はvue antのデザインが初めてです。テーブル チェックボックスのデータ バインドに問題があります。私はvue ant design tableを使用しています。ここに私のコードがあります

<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