vue-element-admin withoutAnimation什么用?

image.png
感觉这个属性添加没有什么意义呀

阅读 5.4k
1 个回答

有用啊,控制Sidebar样式的transition的,你要找一找:

  1. 先看@/layout/index.vue:

    classObj() {
        return {
            hideSidebar: !this.sidebar.opened,
            openSidebar: this.sidebar.opened,
            withoutAnimation: this.sidebar.withoutAnimation,
            mobile: this.device === 'mobile'
        }
    }

    这个赋给了Layout的样式,可以说是一个顶级样式了

  2. 再去看样式,看这个文件~@/styles/sidebar.scss:

    .withoutAnimation {
        .main-container,
        .sidebar-container {
          transition: none;
        }
      }

    很显然,答案就找到了。

推荐问题