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'})