add editorProps to options

This commit is contained in:
Philipp Kühn
2019-01-29 09:31:26 +01:00
parent a6c270c98c
commit 89bdef6441
2 changed files with 5 additions and 0 deletions

View File

@@ -68,6 +68,7 @@ useBuiltInExtensions
| **Property** | **Type** | **Default** | **Description** |
| --- | :---: | :---: | --- |
| `content` | `Object\|String` | `null` | The editor state object used by Prosemirror. You can also pass HTML to the `content` slot. When used both, the `content` slot will be ignored. |
| `editorProps` | `Object` | `{}` | A list of [Prosemirror editorProps](https://prosemirror.net/docs/ref/#view.EditorProps). |
| `editable` | `Boolean` | `true` | When set to `false` the editor is read-only. |
| `autoFocus` | `Boolean` | `false` | Focus the editor on init. |
| `extensions` | `Array` | `[]` | A list of extensions used, by the editor. This can be `Nodes`, `Marks` or `Plugins`. |

View File

@@ -14,6 +14,7 @@ export default class Editor {
constructor(options = {}) {
this.defaultOptions = {
editorProps: {},
editable: true,
autoFocus: false,
extensions: [],
@@ -167,6 +168,9 @@ export default class Editor {
},
},
}),
new Plugin({
props: this.options.editorProps,
}),
],
})
}