我在我的反应组件中使用 react-ace
这是他们在 npmjs 上提供的示例(加上一点服装):
import React from "react";
import AceEditor from "react-ace";
import "brace/mode/python";
import "brace/theme/github";
function onChange(newValue) {
console.log("change", newValue);
}
function CustomAceEditor() {
return (
<AceEditor
mode="python"
theme="github"
onChange={onChange}
name="UNIQUE_ID_OF_DIV"
editorProps={{ $blockScrolling: true }}
width="100%"
/>
);
}
export default CustomAceEditor;
但正如您所见,视图中有一条垂直线..我该如何摆脱它?