我在SharePoint Webpart中使用react-ckeditor-component。
我正在按照说明导入和使用它,并且编译时没有任何错误。
import CKEditor from "react-ckeditor-component";
<CKEditor
content={this.state.content}
events={{
"change": this.handleContentChange
}}
/>
但是我看不到应该由合法的default scriptURL指定的工具栏。
有人有没有使用过该组件并且遇到了相同或相似的问题?
谢谢!