//处于A页面: <router-link to="/B">AAA</router-link> //处于B页面: <button @click="goBack()">Go A Page</button> //JS部分: goBack(){ this.$router.go(-1); },