this.$router.push({ name: "index" });
this.$router.push({ name: "index", params: { id: 1688 } });
this.$router.push('/index');
this.$router.push({
path: "index",
query: { "id": 168 }
});
this.$router.push({
path: `index`
});
this.$router.replace({ path: `/error` });
网友评论