ux-react
Version:
Mobile web UI based on Vue and WeUI
15 lines (14 loc) • 465 B
JavaScript
export default {
mounted () {
this.$overflowScrollingList = document.querySelectorAll('.vux-fix-safari-overflow-scrolling')
},
methods: {
fixSafariOverflowScrolling (type) {
if (!this.$overflowScrollingList.length) return
// if (!/iphone/i.test(navigator.userAgent)) return
for (let i = 0; i < this.$overflowScrollingList.length; i++) {
this.$overflowScrollingList[i].style.webkitOverflowScrolling = type
}
}
}
}