vue 使用路由重复跳转同一页面
重复跳转的时候发送新的date
this.$router.push(`/messages?date=${Date.now()}`).catch(() => {});
页面内监听路由变化
...
watch: {
$route(to, from) {
if (to.query.date) {
this.getList();
}
},
},
...
重复跳转的时候发送新的date
this.$router.push(`/messages?date=${Date.now()}`).catch(() => {});
页面内监听路由变化
...
watch: {
$route(to, from) {
if (to.query.date) {
this.getList();
}
},
},
...