fix: Not allowed to close tags
This commit is contained in:
parent
820ffdf3a7
commit
a2485a5a46
|
@ -72,12 +72,15 @@ const mutations = {
|
||||||
if (index === -1) {
|
if (index === -1) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const arr = state.visitedViews.splice(index + 1)
|
state.visitedViews = state.visitedViews.filter((item, idx) => {
|
||||||
arr.forEach(item => {
|
if (idx <= index || (item.meta && item.meta.affix)) {
|
||||||
const index = state.cachedViews.indexOf(item.name)
|
return true
|
||||||
if (index > -1) {
|
|
||||||
state.cachedViews.splice(index, 1)
|
|
||||||
}
|
}
|
||||||
|
const i = state.cachedViews.indexOf(item.name)
|
||||||
|
if (i > -1) {
|
||||||
|
state.cachedViews.splice(i, 1)
|
||||||
|
}
|
||||||
|
return false
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue