我有一个vue froala组件
<froala
v-model="note"
:tag="'textarea'"
:config="config"
>
</froala>
在脚本中,我将focus设置为true以在文本区域上设置自动对焦。但它不起作用
config: {
focus: true
}
尝试这样的事情:
<froala
v-model="note"
:tag="'textarea'"
:config="config"
ref="froalaFocus"
>
</froala>
...
this.$refs.froalaFocus.focus()
[您可能需要像这样使用$el
:this.$refs.froalaFocus.$el.focus()
可能要更深入一些(您的ref可能是数组,在这种情况下,您需要查找要关注的元素。