I have been trying to insert emoji in textarea exactly where the cursor is at. I looked around how tos
in the web could not find anything specific in VUE JS. Most o
Two steps:
1 get textarea
element using a vue-way:
1.1 Add ref
attrbute to textarea
tag in your template code:
1.2 get this element after mounted
hook of this component:
let textarea = this.$refs.ta
2 get cursor position of textarea
element.
let cursorPosition = textarea.selectionStart
Here is reference: ref