1. 程式人生 > >Vue怎麼返回上一級,返回上一頁面

Vue怎麼返回上一級,返回上一頁面

程式碼如下:

 <button @click='prev'>返回上一級</button> 
 <script>
	    methods:{
      prev(){
    		this.$router.go(-1)
    	}
    }
 </script>

注:後退:this.router.go(1),this.router.go(-1), 反之前進就是this.router.go(1)