Vue 返回上一页
2019-08-27 本文已影响0人
前端召唤师
参考:https://www.cnblogs.com/chenguiya/p/9118265.html
方法一:
@click="back"
back(){
this.$router.go(-1);
}
方法二:
@click="$router.back(-1)"
参考:https://www.cnblogs.com/chenguiya/p/9118265.html
方法一:
@click="back"
back(){
this.$router.go(-1);
}
方法二:
@click="$router.back(-1)"