我在导航栏中有一个链接,它指向一个页面(一个新组件加载到主而不是导航栏中)
<router-link to="/edit_profile"><fa icon="user-cog" /></router-link>
我希望一旦在这个页面上,这个相同的链接就会回到第一页。
我试过这个:
beforeRouteEnter(route, redirect, next){
if(this.$route.path === "/"){
next()
} else {
redirect('/')
} },
但它不起作用。有人有想法吗?