fix: compatible

This commit is contained in:
xieyuhang 2020-06-03 13:45:26 +08:00
parent c320c1c63f
commit 820ffdf3a7
1 changed files with 14 additions and 8 deletions

View File

@ -78,7 +78,11 @@ export default {
return tag.meta && tag.meta.affix return tag.meta && tag.meta.affix
}, },
isLastView() { isLastView() {
return this.selectedTag.fullPath === this.visitedViews[this.visitedViews.length - 1].fullPath try {
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,13 +130,15 @@ export default {
} }
}, },
initSortableTags() { initSortableTags() {
new Sortable(this.$refs['sortable-wrap'], { this.$nextTick(() => {
draggable: '.sortable', new Sortable(this.$refs['sortable-wrap'], {
animation: 200, draggable: '.sortable',
onUpdate: event => { animation: 200,
const { oldIndex, newIndex } = event onUpdate: event => {
this.$store.dispatch('tagsView/moveView', { oldIndex, newIndex }) const { oldIndex, newIndex } = event
} this.$store.dispatch('tagsView/moveView', { oldIndex, newIndex })
}
})
}) })
}, },
moveToCurrentTag() { moveToCurrentTag() {