I have a vue froala component
<froala
v-model="note"
:tag="'textarea'"
:config="config"
>
</froala>
In script , i set focus to true to set autofocus on text area. But its not working
config: {
focus: true
}
config: {
autofocus: true
}
works for me