切换 SlateJS 编辑器的只读属性
Toggle SlateJS editor's readonly props
我在玩 SlateJS v0.34.5
。有什么方法可以切换编辑器只读状态吗?
我想通了。我真傻。在 state
中添加 readOnly
属性 然后在 Editor
中按如下方式传递
<Editor readonly={this.state.readOnly} />
然后做常规 setState
的事情来切换它。
我在玩 SlateJS v0.34.5
。有什么方法可以切换编辑器只读状态吗?
我想通了。我真傻。在 state
中添加 readOnly
属性 然后在 Editor
中按如下方式传递
<Editor readonly={this.state.readOnly} />
然后做常规 setState
的事情来切换它。