Hi, I am not able to set focus on the CKEditor after mounting, do you know how to do it? ``` <template> <vue-ckeditor v-model="htmlContent" type="classic" ref="editor" /> </template> mounted() { this.$nextTick(() => this.$refs.editor.focus()) }, ``` Thanks!