This document describes common issues with basic Mini Program components.
Issues with keyboard and component interaction
Components that launch the keyboard, such as input and textarea, use the native keyboard by default. If issues occur with the interaction between the keyboard and the component, you can add the enableNative="{{false}}" property to the component:
<textarea value="{{inputValue}}" enableNative="{{false}}" maxlength="500" onInput="onInput" />This reverts the component to use the WKWebView keyboard.