没使用vuex时方法里面this.$router.back(-1)这样返回上一页 使用了vuex后mutations这样写报错了Cannot read property 'back' of undefinedmethods: {
release () {
this.$router.back(-1)
}
}mutations: {
RELEASE () { this.$router.back(-1) //Cannot read property 'back' of undefined
}
}
添加回答
举报
0/150
提交
取消