vue设置滚动条

vue如何在div中设置滚动条呢?
首先需要写一下css样式

<div
    :style="{'max-height': this.timeLineHeight + 'px' }"
    style="overflow-y:scroll;"
 >
            

在这个div中,放的是你写的前端代码。它是可以滚动的。
在mounted中改变最大高度的大小。这个减210,它减的是我标头的高度
,你的具体高度需要根据实际情况来减。

mounted() {
    this.timeLineHeight = document.documentElement.clientHeight - 210;
    window.onresize = () => {
      this.timeLineHeight = document.documentElement.clientHeight - 210;
    };
  },

在data中声明一下属性

 data() {
    return {
      timeLineHeight: "",
    }
  }

这样就可以了!

你可能感兴趣的:(vue,vue.js)