surely-vue / surely-table

Performant advanced table component

Home Page:https://www.surely.cool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#summary 总结栏未与列相对应

zhangguixin opened this issue · comments

> <template #summary>
>         <s-table-summary-row>
>           <s-table-summary-cell :index="0">
>             <template #default>
>               合计
>             </template>
>           </s-table-summary-cell>
>           <s-table-summary-cell :index="6">
>             <template #default>
>               150
>             </template>
>           </s-table-summary-cell>
>         </s-table-summary-row>
> </template>

总结栏未与表格栏对齐
image

并且在2.5.1版本下 申明的#default="{ total }" "total" 会报错
image
image

猜测可能是因为未解析出 s-table-summary-row 等组件
image

在全局注册组件后可正常解析了