若依(前后端分离版)是常见的后台管理系统,固定左边菜单栏和头部栏,
但是在开发过程中,有的页面需要类似全屏展示的形式,只展示这个界面,不让用户去展示额外的操作,那么就只需要在想要被隐藏的界面中的mounted函数写这么一段代码即可
mounted() {
this.$store.dispatch('app/toggleSideBarHide', true);
document.querySelector('.navbar').style.display = "none";
document.querySelector('.tags-view-container').style.display = "none"
},