xiaoyao
Results
1
comments of
xiaoyao
参照ctrl-enter插件,实现shift+enter换行功能 ```javascript import { DomEditor } from '@wangeditor/editor'; useEffect(() => { if (editor) { const { $textArea } = DomEditor.getTextarea(editor); if ($textArea) { $textArea.on('keydown', (event) => { if (event.key ===...