Variable EditorContentConst
EditorContent: DefineComponent<
ExtractPropTypes<
{
autofocus: { default: boolean; type: BooleanConstructor };
editable: { default: boolean; type: BooleanConstructor };
editor: { default: null; type: PropType<Editor | null> };
nodeViews: {
default: undefined;
type: PropType<Readonly<Record<string, Component>>>;
};
placeholder: { default: undefined; type: StringConstructor };
},
>,
() => VNode<RendererNode, RendererElement, { [key: string]: any }>,
{},
{},
{},
ComponentOptionsMixin,
ComponentOptionsMixin,
{},
string,
PublicProps,
ToResolvedProps<
ExtractPropTypes<
{
autofocus: { default: boolean; type: BooleanConstructor };
editable: { default: boolean; type: BooleanConstructor };
editor: { default: null; type: PropType<Editor | null> };
nodeViews: {
default: undefined;
type: PropType<Readonly<Record<string, Component>>>;
};
placeholder: { default: undefined; type: StringConstructor };
},
>,
{},
>,
{
autofocus: boolean;
editable: boolean;
editor: Editor
| null;
nodeViews: Readonly<Record<string, Component>>;
placeholder: string;
},
{},
{},
{},
string,
ComponentProvideOptions,
true,
{},
any,
> = ...
Mounts the contenteditable surface. The editor DOM lives outside Vue's virtual DOM, typing never triggers component re-renders.