vue 返回上一页

1. 怎么用vue 返回上一页呢 ! 看如下代码示例:

  <div class="caozuo-heander">
            <div> <i class="icon iconfont icon-return " @click="go"></i></div>
            <div> <span> 登录与操作记录</span></div>
      </div>
methods:{ 
      go:function(){
          this.$router.go(-1);//返回上一页
      } 
}

猜你喜欢

转载自blog.csdn.net/qq_38366657/article/details/81271622