mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2026-05-26 00:50:50 +00:00
Fix validation guard for router (#520)
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user