1、创建directive.js
2、在main.js全局引入
3、用到input就加一句v-blur <input v-blur />

// 自定义指令v-blur,解决ios端键盘收起后事件失效问题
Vue.directive('blur', {
	inserted(el) {
		// 监听键盘收起事件
		document.body.addEventListener('focusout', () => {
			if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
				setTimeout(() => {
					const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0
					window.scrollTo(0, Math.max(scrollHeight - 1, 0))
				}, 100)
			}
		})
	}
})
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐