1. 程式人生 > 程式設計 >vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

方法一

this.$store.dispatch('delVisitedViews',this.$route);

this.$router.go(-1);

方法二

this.$store.state.tagsView.visitedViews.splice(this.$store.state.tagsView.visitedViews.findIndex(item => item.path === this.$route.path),1)

this.$router.push(this.$store.state.tagsView.visitedViews[this.$store.state.tagsView.visitedViews.length-1].path)

補充知識:vue+element解決點選table列表的從詳情或修改頁面跳轉路由到列表頁總是跳轉到第一頁,而不能跳轉到當前頁的問題

思路:

將當前頁的頁碼currentPage存入session,然後點選詳情跳轉到詳情頁面,然後,再次返回當前頁的時候,在created生命週期裡,獲取到儲存的currentPage,再進行載入

vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

vue element 關閉當前tab 跳轉到上一路由操作

以上這篇vue element 關閉當前tab 跳轉到上一路由操作就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。