Lexical で、読取専用モードに設定する方法は、とても簡単です。
読取専用モードの設定方法には、色々な方法がありますが、代表的な設定方法を簡単に記載いたします。
Lexical は使いやすくて、便利ですね!
モード設定
方法1
1 2 3 4 |
const editor = createEditor({ editable: true, ... }) |
方法2
1 2 3 |
<LexicalComposer initialConfig={{editable: true}}> ... </LexicalComposer> |
方法3
1 |
editor.setEditable(true); |
モード判定
1 |
const isEditable = editor.isEditable(); // Returns true or false |
Lexical 公式サイト
Read Mode / Edit Mode | Lexical
Lexical supports two modes: