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