UNPKG

hae

Version:

Mobile web UI based on Vux

15 lines (14 loc) 479 B
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 } } } }