| data | 显示的数据 | Array | — | [] | |
| filled-column | 编辑时使表单组件撑满单元格 | Boolean | — | false | |
| size | Table 的尺寸 | String | 'medium' | 'small' | 'mini' | mini | |
| width | Table 的宽度 | String | Number | — | — | |
| height | Table 的高度,默认为自动高度。如果 height 为 number 类型,单位 px;如果 height 为 String 类型,则这个高度会设置为 Table 的 style.height 的值,Table 的高度会受控于外部样式。 | String | Number | — | — | |
| max-height | Table 的最大高度。合法的值为数字或者单位为 px 的高度。 | String | Number | — | — | |
| fit | 列的宽度是否自撑开 | Boolean | — | true | |
| border | 是否带有纵向边框 | Boolean | — | true | |
| row-key | 行数据的 Key,用来优化 Table 的渲染;在使用 reserve-selection 功能与显示树形结构数据时,该属性是必填的。类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使用 Function。 | Function(row) | String | — | — | |
| context | 上下文数据,用于传递给列的作用域插槽 | — | — | — | |
| show-header | 是否显示表头 | Boolean | — | true | |
| row-class-name | 行的 className 的回调方法,也可以使用字符串为所有行设置一个固定的 className。 | Function({row, rowIndex}) | String | — | — | |
| row-style | 行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style。 | Function({row, rowIndex}) | Object | — | — | |
| cell-class-name | 单元格的 className 的回调方法,也可以使用字符串为所有单元格设置一个固定的 className。 | Function({row, column, rowIndex, columnIndex}) | String | — | — | |
| cell-style | 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style。 | Function({row, column, rowIndex, columnIndex}) | Object | — | — | |
| header-row-class-name | 表头行的 className 的回调方法,也可以使用字符串为所有表头行设置一个固定的 className。 | Function({row, rowIndex}) | String | — | — | |
| header-row-style | 表头行的 style 的回调方法,也可以使用一个固定的 Object 为所有表头行设置一样的 Style。 | Function({row, rowIndex}) | Object | — | — | |
| header-cell-class-name | 表头单元格的 className 的回调方法,也可以使用字符串为所有表头单元格设置一个固定的 className。 | Function({row, column, rowIndex, columnIndex}) | String | — | — | |
| header-cell-style | 表头单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有表头单元格设置一样的 Style。 | Function({row, column, rowIndex, columnIndex}) | Object | — | — | |
| highlight-current-row | 是否要高亮当前行 | Boolean | — | true | |
| highlight-selection-row | 是否要高亮复选框选中行(仅针对开启 selection 有效) | Boolean | — | false | |
| current-row-key | 当前行的 key,只写属性 | String,Number | — | — | |
| empty-text | 空数据时显示的文本内容,也可以通过 slot="empty" 设置 | String | — | 暂无数据 | |
| tooltip-effect | tooltip theme 属性 | String | 'dark' | 'light' | — | |
| span-method | 合并行或列的计算方法 | Function({ row, column, rowIndex, columnIndex }) | — | — | |
| select-on-indeterminate | 在多选表格中,当仅有部分行被选中时,点击表头的多选框时的行为。若为 true,则选中所有行;若为 false,则取消选择所有行 | Boolean | — | true | |
| enter-to-next-row | 键盘导航配置,回车键是否跳转到下一行。为 true 时,回车键按下后跳转到下一行;为 false 时,回车键按下后跳转到右侧单元格 | Boolean | — | true | |