vue禁止IOS页面回弹

3,040 阅读1分钟

官网:github.com/lazd/iNoBou…

安装

npm install inobounce -s
or
yarn add  inobounce

使用

<script>
import inobounce from 'inobounce'
export default {
  data() {
    return {  }
  },
  mounted() { },
  created() {
    let u = navigator.userAgent
    if (u.indexOf('iPhone') > -1) {
      inobounce.enable()
    }
  },
  beforeDestroy() {
    inobounce.disable()
  },
  methods: { }
}
</script>

按需滚动

.container {
    -webkit-overflow-scrolling: touch; // 触摸增强
}