Vue/Element-ui动态调整左侧菜单栏高度

动态调整左侧菜单栏高度为全body高度,仅供参考

<el-container :style="containerHeight">
      <el-scrollbar>
            <el-aside style="width:200px;">
                ....
            </el-aside>
      </el-scrollbar>
</el-container>
export default {
  data() {
    return {
      containerHeight: {
        height: ""
      }
    };
  },
  created() {
    //动态调整左侧菜单栏高度
    var docHeight = document.documentElement.clientHeight;
    this.containerHeight.height = docHeight - 20 + "px";
  }
};

猜你喜欢

转载自blog.csdn.net/SmartJunTao/article/details/108216851