maven
2025-08-28 88ebe9f8ee064523329c65e7a61f6f738e651fdd
src/store/modules/app.js
@@ -14,7 +14,16 @@
    }),
    actions: {
      toggleSideBar(withoutAnimation) {
        return true
        if (this.sidebar.hide) {
          return false
        }
        this.sidebar.opened = !this.sidebar.opened
        this.sidebar.withoutAnimation = withoutAnimation
        if (this.sidebar.opened) {
          Cookies.set('sidebarStatus', 1)
        } else {
          Cookies.set('sidebarStatus', 0)
        }
      },
      closeSideBar({ withoutAnimation }) {
        Cookies.set('sidebarStatus', 0)