vue使用路由跳转到上一页

Posted on 2019-04-06 17:18  猫头唔食鱼  阅读(575)  评论(0编辑  收藏  举报

this.$router.go(-1)

 

<template>
<div>
    <button class="btn btn-success" @click="goback()">返回上一页</button>
</div>
</template>
<script>
export default {
  name: "GoBack",
  data () {
    return {
    };
  },
  methods:{
      goback(){
          this.$router.go(-1)
      }
  }
}
</script>
<style lang="css" scoped>
</style>