vue clear browser history stack

Question: You need to jump to several pages for form submission. After submission, jump back to the home page and return to the previous page. It is found that you can also return to the previous page routing

//可以拿到历史记录栈,清空栈
let routeHistory=history.length-1;
this.$router.go(-routeHistory);

Guess you like

Origin blog.csdn.net/weixin_45108907/article/details/114894637