Table slot usage of Table components in Element-UI

problem description

when looking at the table component document of Element UI, I found this usage:
Table Slot
because there is no description in the document, so I would like to know how to use the following?

bVXfk8?w=1017&h=237

Jun.21,2021

official note: this slot may be used if the contents of the table are inserted after the last row of the table, if you need to scroll the contents of the table indefinitely. If the table has a total row, the slot will be above the total row.
for example: personal understanding
https://jsfiddle.net/7csptr3w/5/


< el-table >

<el-table-column
    type="index"
    :index="1"
    label=''
    width='100'>
</el-table-column>
<div slot="append" style="text-align: center">
    <!---->
    
</div>

< / el-table >


slots in vue, do you understand? if you don't understand, ide/components-slots.html-sharpad" rel=" nofollow noreferrer "> link

Menu