vue使用路由跳转到上一页
Posted luguankun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue使用路由跳转到上一页相关的知识,希望对你有一定的参考价值。
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>
以上是关于vue使用路由跳转到上一页的主要内容,如果未能解决你的问题,请参考以下文章