标签:strong rect span 指定 com redirect color info 创建
使用别名后就只会显示到域名,后面的文件是不会显示的,这就起到保护的作用了
const routes = [ {path:‘/footer‘,name:footerLink,component:Footer} ]
在组件中的路由中通过对象属性来实现路由
<router-link :to="{name:homeLink}">Mirror微申</router-link>
this.$router.go(-1)
this.$router.replace(‘/footer’) // 还可以通过别名跳转 this.$router.replace({name:’footerLink’})
this.$router.push(‘/footer’) this.$router.push({name:’footerLink’})
const routes = [ {path:‘/‘,redirect:‘/home‘}, {path:‘/home‘,name:homeLink,component:Home}, ]
每天一点点之vue框架开发 - vue-router路由进阶(路由别名、跳转、设置默认路由)
标签:strong rect span 指定 com redirect color info 创建
原文地址:https://www.cnblogs.com/cap-rq/p/10101237.html