What is the reason behind the occurrence of the error in the ID part of the query?
This call does not have a matching overload.
<template>
<swiper-slide
slot="list"
v-for="(list, index) in list.banner"
:key="index"
><img :src="list.image_url" @click="noticeRead(list.id)"
/></swiper-slide>
</template>
export default class Main extends Vue {
noticeRead(id: number): void {
if (id != null) {
this.$router.push({
path: "/help/notice/read",
query: {
id: id ,
},
});
}
}
}