!813 update src/store/modules/tagsView.ts.
Merge pull request !813 from 口口口/N/A
This commit is contained in:
@ -93,6 +93,11 @@ export const useTagsViewStore = defineStore('tagsView', {
|
||||
delCachedView() {
|
||||
const route = router.currentRoute.value
|
||||
const index = findIndex<string>(this.getCachedViews, (v) => v === route.name)
|
||||
for (const v of this.visitedViews) {
|
||||
if (v.name === route.name) {
|
||||
return
|
||||
}
|
||||
}
|
||||
if (index > -1) {
|
||||
this.cachedViews.delete(this.getCachedViews[index])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user