From 864fc716f97ef0aacd845f4277dc990a39a43b9a Mon Sep 17 00:00:00 2001 From: Seviche Date: Sat, 1 Apr 2023 18:30:27 +0800 Subject: [PATCH] style: remove comments --- src/components/Tiptap/Editor.vue | 9 --------- 1 file changed, 9 deletions(-) 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({