vue-element-admin (git)
窗口宽度变化,菜单自动隐藏
beforeMount() { window.addEventListener('resize', this.$_resizeHandler) },
$_resizeHandler() { console.log('窗框宽度变化,这里执行了, window.addEventListener的使用') if (!document.hidden) { const isMobile = this.$_isMobile() store.dispatch('app/toggleDevice', isMobile ? 'mobile' : 'desktop') if (isMobile) { store.dispatch('app/closeSideBar', { withoutAnimation: true }) } } }
标签:el,menu,app,dispatch,sidebar,isMobile From: https://www.cnblogs.com/dianzan/p/17732258.html