vue的写法:
$router.push('name');
$router.push( {path:'name'} );
$router.push({ path:' name ? a=123' })或者$router.push({ path:' name ' ,query:{a=123 } })或者
$router.go(1)
react的写法:
this.$router.push('/home ');
angular的写法:
import {Router} from "@angular/router";
constructor(public router: Router) {
// 相当于window.location.href,界面跳转
router.navigateByUrl('home');
}
网友评论