File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
documentation/docs/tutorial/03-Customization Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -978,7 +978,7 @@ async function loadPageData(data) {
978978Table supports column sorting out of the box.
979979
980980- By default, columns are NOT sortable. Enable sorting per column with ` sortable: true ` .
981- - Clicking a sortable header cycles sorting in a tri‑ state order:
981+ - Clicking a sortable header cycles sorting in a tri- state order:
982982 - none → ascending → descending → none
983983 - When it returns to "none", the sorting is cleared.
984984
Original file line number Diff line number Diff line change 216216 emit (' update:sortField' , currentSortField .value );
217217 emit (' update:sortDirection' , currentSortField .value ? currentSortDirection .value : undefined );
218218 emit (' sort-change' , { field: currentSortField .value , direction: currentSortDirection .value });
219- });
219+ }, { immediate: false } );
220220
221221 const totalPages = computed (() => {
222222 return dataResult .value ?.total ? Math .ceil (dataResult .value .total / props .pageSize ) : 1 ;
You can’t perform that action at this time.
0 commit comments