Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 250 Bytes

README.md

File metadata and controls

15 lines (14 loc) · 250 Bytes

vue-scroll-block

block scroll fire on document on mobile devices

In most cases, the following css code may be a better method

html {
  height: 100%;
  overflow: hidden;
}
body {
  height: 100vh;
  overflow: auto;
  background: green;
}