my list page has a list. Notice that the page here is 5. Clicking on this name will jump to the details page: detail page, but when I return list from the detail page, the page will return to 1. What do I have to do to get back to the back page or 5?
my fallback is: this.$router.go (- 1);
Edit 01
Jump from the list page to the details page:
go_details(h, params){
let query = {
id: params.row.id
}
this.$router.push({
name: "physicalserverDetails",
query: query
});
},