<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);
}
}
}