라이브 에디터 콜아웃 줄 삭제 수정

This commit is contained in:
2026-06-04 11:09:40 +09:00
parent 83f66a4b93
commit 675e6bca78
12 changed files with 111 additions and 11 deletions

View File

@@ -31,7 +31,7 @@ const props = defineProps({
}
})
const emit = defineEmits(['commit', 'insert-below'])
const emit = defineEmits(['commit', 'insert-below', 'delete-line'])
const titleEditorRef = ref(null)
const bodyEditorRef = ref(null)
@@ -141,6 +141,7 @@ const onExitBelow = (payload) => {
:model-value="modelValue"
@commit="onBodyCommit"
@insert-below="onExitBelow"
@delete-line="emit('delete-line', $event)"
/>
</ProseToggle>
</template>