After the input automatically gets the focus in vue, how to make the cursor display behind the text?

< input type= "tel" autofocus= "autofocus" >

clipboard.png

the cursor appears in front of the number by default. Is there any way to make the cursor appear after the number

Apr.02,2021

it is possible to call node's focus directly

var node = document.querySelector("-sharpinput")
console.log(node.focus())
Menu