Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个 vue js 应用程序,它使用 vue-trix 作为 trix 编辑器的包装器。我正在尝试使用文档中概述的程序化文本选择。在我为组件安装的 vue 挂钩中,我有以下内容:
this.$refs.notesEditor.$refs.trix.editor.setSelectedRange([1,3]);
但是,它总是将光标放在文本区域的开头而没有选择。
问- 如何从 trix 编辑器中选择一段文本?