fix: compatible
This commit is contained in:
parent
c320c1c63f
commit
820ffdf3a7
|
@ -78,7 +78,11 @@ export default {
|
||||||
return tag.meta && tag.meta.affix
|
return tag.meta && tag.meta.affix
|
||||||
},
|
},
|
||||||
isLastView() {
|
isLastView() {
|
||||||
|
try {
|
||||||
return this.selectedTag.fullPath === this.visitedViews[this.visitedViews.length - 1].fullPath
|
return this.selectedTag.fullPath === this.visitedViews[this.visitedViews.length - 1].fullPath
|
||||||
|
} catch (err) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
filterAffixTags(routes, basePath = '/') {
|
filterAffixTags(routes, basePath = '/') {
|
||||||
let tags = []
|
let tags = []
|
||||||
|
@ -126,6 +130,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
initSortableTags() {
|
initSortableTags() {
|
||||||
|
this.$nextTick(() => {
|
||||||
new Sortable(this.$refs['sortable-wrap'], {
|
new Sortable(this.$refs['sortable-wrap'], {
|
||||||
draggable: '.sortable',
|
draggable: '.sortable',
|
||||||
animation: 200,
|
animation: 200,
|
||||||
|
@ -134,6 +139,7 @@ export default {
|
||||||
this.$store.dispatch('tagsView/moveView', { oldIndex, newIndex })
|
this.$store.dispatch('tagsView/moveView', { oldIndex, newIndex })
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
})
|
||||||
},
|
},
|
||||||
moveToCurrentTag() {
|
moveToCurrentTag() {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
|
Loading…
Reference in New Issue