this.$router的方法总结
1、this.$router.addroute()
addRoute 添加一条新的路由记录作为现有路由的子路由,如果路由有一个name, 并且已经有一个与之名字相同的路由,它会先删除之前的路由;
2、this.$router.addroutes()
this.$router.addRoutes(routes: Array)
动态添加更多的路由规则。参数必须是一个符合 routes 选项要求的数组。
3、this.$router.push() ---- 常用
描述:跳转到不同的url,但这个方法回向history栈添加一个记录,点击后退会返回到上一个页面。
4、this.$router.replace() — 重定向
它的作用类似于 router.push,唯一不同的是,它在导航时不会向 history 添加新记录。
5、this.$router.go(n)
该方法采用一个整数作为参数,表示在历史堆栈中前进或后退多少步,类似于 window.history.go(n)。
6、this.$router.resolve
当遇到需要在点击事件或函数中实现,新窗口打开新页面