$router是一个VueRouter的实例 可以导航到不同的路由里
$route是$router跳转到的当前一个对象,里面包含该对象的path、query、name 、params
用法 : this.$router.push() 跳转到指定的url 会向history栈添加一个记录 点击后退会返回上一页面
1、this.$router.push({path:'/detail',query:{}}) this.$router.push('/detail')
使用当前的query this.$route.query
2、this.$router.push({name:'detail',params:{}})
使用当前的params this.$route.params