This commit is contained in:
ShuQingX 2020-12-04 17:54:24 +08:00 committed by GitHub
commit ac5d88484e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,7 @@ export default {
// to fixed bug when cached by keep-alive
// https://github.com/PanJiaChen/vue-element-admin/issues/2116
activated() {
this.resize()
this.$_initResizeEvent()
this.$_initSidebarResizeEvent()
},
@ -50,6 +51,10 @@ export default {
},
$_destroySidebarResizeEvent() {
this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler)
},
resize() {
const { chart } = this
chart && chart.resize()
}
}
}