<router-link to="/home" @click.native="flushCom">首页</router-link>
export default {
methods:{
flushCom:function(){
//router是路由实例,例如:var router = new Router({})
//router.go(n)是路由的一个方法,意思是在history记录中前进或者后退多少步,0就表示还是当前,类似window.history.go(n)
this.$router.go(0);
}
}
}
所有评论(0)