diff --git a/src/components/Tiptap/Editor.vue b/src/components/Tiptap/Editor.vue index a524c00..c8c4166 100644 --- a/src/components/Tiptap/Editor.vue +++ b/src/components/Tiptap/Editor.vue @@ -74,8 +74,6 @@ const editor = useEditor({ }, }), Placeholder.configure({ - // Use different placeholders depending on the node type: - // placeholder: 'Write something …' placeholder: ({ node }) => { if (node.type.name === 'heading') { switch (node.attrs.level) { @@ -107,13 +105,6 @@ const editor = useEditor({