1. In mpvue Mini Program, when I am in the textarea tag, when I use v-model to bind data, when I want to modify the data inside (such as deleting a few words in the middle of a paragraph), when I move the cursor to the position I want to delete, the first time I click to delete, the cursor will automatically return to the end of the paragraph, input tag is the same problem.
2. Although this problem was solved when using v-model.lazy, when I filled out the form and clicked submit, the data was not passed to the background. I looked at the mpvue document. Although v-model.lazy belongs to the change event in vue, in mpvue, the change event is automatically converted into a blur event, so the data is bound only when the input box form loses focus, and when there is no focus, Click the submit button directly, and the data is not bound, so it is not submitted to the background.
in the end, who can give a better solution, which can not only make the cursor normal, but also bind and pass it to the background immediately?
:
the device used is: the iPhone6s system is IOS11.3,. Wechat version is 6.6.6
.