mutations DEL_OTHERS_VIEWS state.cachedViews -> i type is string slice(begin: number, end: number)

This commit is contained in:
xiaomi 2018-07-25 12:31:59 +08:00
parent 45aac151d7
commit 99d1043f42
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ const tagsView = {
for (const i of state.cachedViews) { for (const i of state.cachedViews) {
if (i === view.name) { if (i === view.name) {
const index = state.cachedViews.indexOf(i) const index = state.cachedViews.indexOf(i)
state.cachedViews = state.cachedViews.slice(index, i + 1) state.cachedViews = state.cachedViews.slice(index, index + 1)
break break
} }
} }