<div id="app"> <div style="overflow:auto;height:170px;" @scroll="getScrollParam"> <ul :style="listStyle"> <li style="height:17px" v-for="num in displayList">{{num}}</li> </ul> </div> </div> new Vue({ el: '#app', data: function(){ return { list:list, scroll:0,//スクロール量 scrollMax: (list.length - displayRowNum) * listItemHeight //最大のスクロール量 } }, computed:{ displayList:function(){ //ユーザーの目に映るところだけリストを描画

