vue跳转后不记录历史记录
vue路由跳转一般情况下是使用push,this.$router.push({path: "/testTeam/testTeam",});若是特殊需求,页面跳转后不记录到历史记录中,将push改为replace即可this.$router.replace({path: '/project_selection'})...
·
vue路由跳转一般情况下是使用push,
this.$router.push({
path: "/testTeam/testTeam",
});
若是特殊需求,页面跳转后不记录到历史记录中,将push改为replace即可
this.$router.replace({path: '/project_selection'})
更多推荐
已为社区贡献3条内容
所有评论(0)