The World of Remnant

electron-vue中改变窗口大小时el-scrollbar需要重新渲染的问题

加上 v-if="showScroll"

mounted() {
    window.onresize = () => {
      if (this.showScroll === true) this.showScroll = false;
      window.requestAnimationFrame(() => {
        this.showScroll = true;
      });
    };
  },