yink #17

Merged
yinkang merged 46 commits from yink into dev 2025-07-07 07:15:25 +00:00
Showing only changes of commit a405a3bd90 - Show all commits

View File

@ -739,8 +739,7 @@ function onEditorChange() {
function loadEditorDraftText() { function loadEditorDraftText() {
if (!editor.value) return if (!editor.value) return
// //
const currentQuoteData = quoteData.value
quoteData.value = null quoteData.value = null
// 稿 // 稿
@ -761,11 +760,6 @@ function loadEditorDraftText() {
editor.value.commands.clearContent(true) // 稿 editor.value.commands.clearContent(true) // 稿
} }
// 使
if (currentQuoteData) {
quoteData.value = currentQuoteData
}
// //
editor.value.commands.focus('end') editor.value.commands.focus('end')
} }