Fix validation guard for router (#520)

This commit is contained in:
Fine0830
2026-02-05 18:01:05 +08:00
committed by GitHub
parent 41b323400f
commit 4e3b1bdeae
4 changed files with 8 additions and 18 deletions

View File

@@ -73,7 +73,9 @@ limitations under the License. -->
const currentPageModel = computed({
get: () => props.currentPage,
set: (val: number) => emits("update:currentPage", val),
set: (val: number) => {
void val;
},
});
const paginationStyle = computed(() => {