diff --git a/playground/src/views/examples/vxe-table/viewed.vue b/playground/src/views/examples/vxe-table/viewed.vue index 3531ef89a..ecafe0da3 100644 --- a/playground/src/views/examples/vxe-table/viewed.vue +++ b/playground/src/views/examples/vxe-table/viewed.vue @@ -23,7 +23,7 @@ interface RowType { const gridOptions: VxeGridProps = { checkboxConfig: { highlight: true, - labelField: 'productName', + labelField: 'category', }, columns: [ {title: '序号', type: 'seq', width: 50}, @@ -36,7 +36,7 @@ const gridOptions: VxeGridProps = { align: 'center', cellRender: { attrs: { - nameField: 'name', + nameField: 'category', onClick: onActionClick, }, name: 'CellOperation',