Skip to content

VueScroll 1.4 release notes

Choose a tag to compare

@wangyi7099 wangyi7099 released this 04 Dec 07:02
· 625 commits to master since this release
16969ce

1 Simplify the configration.

Before:

<div id="scroll1">
          <div class="scroll" style="position: relative;">
  			<vue-scrollPanel>
  				<vue-scroll-con>
  					<div class="content2">

  					</div>
  				</vue-scroll-con>
  			</vue-scrollPanel>
  			<vue-scroll :ops="ops" @scroll="lookscroll">

  			</vue-scroll>
  		</div>
</div>

Now:

<div id="scroll1">
             <vueScroll :contentWrap="{height:'100%'}">
                 <div class="content2">

		</div>
            </vueScroll>
 </div>

2 Add New Prop contentWrap to controll the style of the content Warp.