You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
reagent_manage/docs/frontend/components/abstract-table.md

434 B

Abstract Table

<el-table>设置了一些默认属性,设置了empty插槽。

<el-table
    ref="table"
    current-row-key="id"
    row-key="id"
    highlight-current-row
    {...data}
    >
    {children}
    <Empty slot="empty"/>
</el-table>

引入:

@/components/AbstractTable

使用:

照着官方文档,当成 <el-table> 用就行。