保存进度!

This commit is contained in:
Kane Wang 2023-02-14 18:57:03 +08:00
parent f2802722c1
commit 007953d129
2 changed files with 12 additions and 7 deletions

View File

@ -0,0 +1,5 @@
interface document
{
getElementById(id: string): HTMLElement | null;
}

View File

@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-02-02 22:19:12
* @LastEditors: Kane
* @LastEditTime: 2023-02-13 12:50:29
* @LastEditTime: 2023-02-14 08:54:25
* @FilePath: /IT/src/views/requirement/RequirementManager.vue
* @Description:
*
@ -418,12 +418,12 @@ export default {
onUIChange();
//editor
// const detailEditor = detailEditorRef.value;
const detailEditor = detailEditorRef.value;
// if (detailEditor !== null)
// {
// detailEditor.destroy();
// }
if (detailEditor != null)
{
detailEditor.destroy();
}
//editor
const commentEditor = commentEditorRef.value;
@ -478,7 +478,7 @@ export default {
handleDetailEditorCreated,
handleCommentEditorCreated,
//
onBeforeMount,
//onBeforeMount,
};
//#endregion
},