安装
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; // 触摸增强
}