@click.native:事件后面要添加.native,不然添加的事件不起作用,具体原因应该是router-link为了阻止a标签的默认跳转事件

<router-link to="/index"  @click.native="flushCom">{{ projectInfo.name }}</router-link>

router是路由实例,例如:var router = new Router({})
router.go(n)是路由的一个方法,意思是在history记录中前进或者后退多少步,0就表示还是当前,类似window.history.go(n)

flushCom(){
  this.$router.go(0);  
},

路由更多信息:router.push(),router.replace(),router.go()

Logo

前往低代码交流专区

更多推荐