fix[TagsView]: fixed CachedView bug (PanJiaChen#406)

This commit is contained in:
梁敏华 2019-11-15 17:41:00 +08:00
parent 25dddbbce8
commit cdd09ed943
1 changed files with 6 additions and 1 deletions

View File

@ -15,7 +15,12 @@ const mutations = {
ADD_CACHED_VIEW: (state, view) => {
if (state.cachedViews.includes(view.name)) return
if (!view.meta.noCache) {
state.cachedViews.push(view.name)
for (const matchedView of view.matched) {
const { name } = matchedView.components.default
if (name && state.cachedViews.indexOf(name) === -1) {
state.cachedViews.push(name)
}
}
}
},