Files
tiptap/packages/core/src/extensions/editable.ts
2020-11-02 22:43:54 +01:00

16 lines
352 B
TypeScript

import { Plugin, PluginKey } from 'prosemirror-state'
import { createExtension } from '../Extension'
export const Editable = createExtension({
addProseMirrorPlugins() {
return [
new Plugin({
key: new PluginKey('editable'),
props: {
editable: () => this.editor.options.editable,
},
}),
]
},
})