tiptap/packages/core/src/extensions/editable.ts
2021-02-10 09:59:35 +01:00

18 lines
368 B
TypeScript

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