Vue-Router中常见的导航方式:
this.$router.push("hash地址");
this.$router.push("/login");
this.$router.push({ name:'user' , params: {id:123} });
this.$router.push({ path:"/login" });
this.$router.push({ path:"/login",query:{username:"jack"} });
this.$router.go( n );//n为数字,参考history.go
this.$router.go( -1 ); //用法类似于 history.go(-1)
$route 地址栏所有信息 --- 利用它获取地址栏动态参数,查询参数...
$router 路由对象 --- 利用它实现编程式导航