fix[TagsView]: fixed toLastView bug

This commit is contained in:
花裤衩 2019-10-08 21:18:44 +08:00
parent b4cdf528ba
commit 43a596d5d3
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ export default {
toLastView(visitedViews, view) {
const latestView = visitedViews.slice(-1)[0]
if (latestView) {
this.$router.push(latestView)
this.$router.push(latestView.fullPath)
} else {
// now the default is to redirect to the home page if there is no tags-view,
// you can adjust it according to your needs.