1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

refine tabsview

This commit is contained in:
Pan 2017-09-01 10:59:45 +08:00
parent f712d4682e
commit 5379510013

@ -19,7 +19,12 @@ export default {
closeViewTabs(view, $event) {
this.$store.dispatch('delVisitedViews', view).then((views) => {
if (this.isActive(view.path)) {
this.$router.push(views.pop().path)
const latestView = views.slice(-1)[0]
if (latestView) {
this.$router.push(latestView.path)
} else {
this.$router.push('/')
}
}
})
$event.preventDefault()