Vue路由跳转
1. router-link2. this.$router.push()3. this.$router.replace() (用法同push)4. this.$router.go(n)router-link<router-link :to="{name:'home'}">
<router-link :to="{path:'/home'}">
<router-link :to="{name:'home', params: {id:1}}">
类似于post,第一次有效,刷新就消失
<router-link :t...