<template> <div> <div> 我是skipthree页面</div><div @click="handleBack">回退</div></div></template><script> export default {methods: { handleBack(){ // go(n):n为正数,向前跳转几个页面;n为0,刷新当前页面;n为负数,向前回退几个页面;如果记录不足用,跳转失落败,没有反应 // go(-1): 原页面表单中的内容会丢失; // this.$router.go(-1)//回退到上一个页面 // this.$router.go(0)//刷新当前页面 // this.$router.go(-2)//回退到上上个页面 // this.$router.go(-10) // back(): 原页面表单中的内容会丢失; // this.$router.back();//退却撤退 ; // this.$router.back(0) //刷新; // this.$router.back(1)//提高 } },} </script><style scoped> </style>
