+
+ {
+ editorRef.current = editor;
+ setEditorReady(true);
+ // 隐藏光标
+ const editorDom = editor.getDomNode();
+ if (editorDom) {
+ const style = document.createElement('style');
+ style.innerHTML = `.monaco-editor .cursor { display: none !important; }`;
+ editorDom.appendChild(style);
+ }
+ }}
+ />
+
+
+
+