|
4 | 4 | "checkboxColor": "Set the color of the checkboxes (showSelect must be used).",
|
5 | 5 | "collapseIcon": "Icon to display when the expandable row is expanded.",
|
6 | 6 | "customFilter": "Function to filter items.",
|
7 |
| - "customGroup": "Function used to group items.", |
8 |
| - "customSort": "Function used to sort items.", |
9 | 7 | "caption": "Set the caption (using `<caption>`).",
|
10 | 8 | "density": "Adjusts the vertical height of the table rows.",
|
11 | 9 | "disableFiltering": "Disables filtering completely.",
|
|
22 | 20 | "height": "Set an explicit height of table.",
|
23 | 21 | "hover": "Adds a hover effects to a table rows.",
|
24 | 22 | "itemClass": "Property on supplied `items` that contains item's row class or function that takes an item as an argument and returns the class of corresponding row.",
|
25 |
| - "itemsPerPage": "Changes how many items per page should be visible. Can be used with `.sync` modifier. Setting this prop to `-1` will display all items on the page.", |
| 23 | + "itemsPerPage": "Changes how many items per page should be visible. Can be bound to external variable using **v-model:itemsPerPage**.. Setting this prop to `-1` will display all items on the page.", |
26 | 24 | "locale": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function.",
|
27 | 25 | "multiSort": "If `true` then one can sort on multiple properties.",
|
28 | 26 | "mustSort": "If `true` then one can not disable sorting, it will always switch between ascending and descending.",
|
|
31 | 29 | "showSelect": "Shows the select checkboxes in both the header and rows (if using default rows).",
|
32 | 30 | "showExpand": "Shows the expand toggle in default rows.",
|
33 | 31 | "showGroupBy": "Shows the group by toggle in the header and enables grouped rows.",
|
34 |
| - "sortBy": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier.", |
35 |
| - "sortDesc": "Changes which direction sorting is done. Can be used with `.sync` modifier.", |
| 32 | + "sortBy": "Changes which item property (or properties) should be used for sort order. Can be bound to external variable using **v-model:sortBy**..", |
36 | 33 | "virtualRows": "Virtualizes the rendering of rows. Be aware that you can not use the `body`, `body.prepend` or `body.append` slots with this prop."
|
37 | 34 | },
|
38 | 35 | "slots": {
|
|
74 | 71 | "click:row": "Emits when a table row is clicked. This event provides 2 arguments: the first is the native click event, and the second is an object containing the corresponding item for that row. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
|
75 | 72 | "contextmenu:row": "Emits when a table row is right-clicked. The item for the row is included. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
|
76 | 73 | "dblclick:row": "Emits when a table row is double-clicked. The item for the row is included. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
|
77 |
| - "currentItems": "Emits the items provided via the **items** prop, every time the internal **computedItems** is changed.", |
78 |
| - "pageCount": "Emits when the **pageCount** property of the **pagination** prop is updated.", |
79 |
| - "pagination": "Emits when something changed to the `pagination` which can be provided via the `pagination` prop.", |
80 |
| - "toggleSelectAll": "Emits when the `select-all` checkbox in table header is clicked. This checkbox is enabled by the **show-select** prop.", |
81 | 74 | "update:currentItems": "Emits with the items currently being displayed.",
|
82 |
| - "update:expanded": "Emits when the **expanded** prop is updated.", |
83 | 75 | "update:groupBy": "Emits when the **group-by** prop is updated.",
|
84 | 76 | "update:itemsPerPage": "Emits when the **items-per-page** prop is updated.",
|
85 | 77 | "update:modelValue": "Emits when the component's model changes.",
|
86 |
| - "update:multiSort": "Emits when the **multi-sort** prop is updated.", |
87 |
| - "update:mustSort": "Emits when the **must-sort** prop is updated.", |
88 | 78 | "update:options": "Emits when pagination related properties (page, itemsPerPage, sortBy, groupBy, search) is updated.",
|
89 | 79 | "update:page": "Emits when the **page** prop is updated.",
|
90 |
| - "update:sortBy": "Emits when the **sortBy** prop is updated.", |
91 |
| - "update:sortDesc": "Emits when the **sort-desc** prop is updated." |
| 80 | + "update:sortBy": "Emits when the **sortBy** prop is updated." |
92 | 81 | }
|
93 | 82 | }
|
0 commit comments