Vue 如何返回上一页(上一个锚点)
//...省略
methods:{
goback:function(){
this.$router.go(-1);//返回上一页
}
}
//...省略
注意:前提是使用了Vue 的route组件
https://www.syntaxspace.com/article/519.html
//...省略
methods:{
goback:function(){
this.$router.go(-1);//返回上一页
}
}
//...省略
注意:前提是使用了Vue 的route组件
https://www.syntaxspace.com/article/519.html
评论