From a2265b1db9c21f4665048bbdb05d5f553e5d4c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=99=A8?= Date: Wed, 20 Nov 2019 21:09:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:iOS13=E5=85=BC=E5=AE=B9textarea=E7=9A=84mar?= =?UTF-8?q?gin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/view/components/textarea/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/view/components/textarea/index.vue b/src/core/view/components/textarea/index.vue index f424cf8f4..890b725a8 100644 --- a/src/core/view/components/textarea/index.vue +++ b/src/core/view/components/textarea/index.vue @@ -122,7 +122,7 @@ export default { focusSync: this.focus, height: 0, focusChangeSource: '', - isIOS: String(navigator.platform).indexOf('iP') === 0 && String(navigator.vendor).indexOf('Apple') === 0 + isIOS: String(navigator.platform).indexOf('iP') === 0 && String(navigator.vendor).indexOf('Apple') === 0 && String(navigator.appVersion).split('OS ')[1].split('_')[0] < 13 } }, computed: { -- GitLab