|
Basically, we get a new HTML tag "el-infinite-scroll", which can take some attributes:
| Attribute | Description | Required | Default value |
| | container-id | The id of the element present in the DOM, containing scrollable items | True | - |
| | target-container-id | The id of the sub-element of the container, containing directly scrollable items. This attribute is mostly relevant for tables, in which case the id should reference the tbody element. | False | - |
| | offset | The number specifying the starting index of elements to be displayed in the total set | False | 0 |
| | step | The number of elements to fetch on the next scroll | True | - |
| | total-count | The number specifying the length of elements available to the server | True | - |
| | offset-arg | A string specifying which url parameter will hold the offset value when a request is made to the server | False | offset |
|