浏览代码

修复富文本未清空的问题

tags/小炒逻辑变更前
yangwenhua 2 年前
父节点
当前提交
8642a7d552
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      src/pages/card/gate/index.jsx

+ 3
- 1
src/pages/card/gate/index.jsx 查看文件

@@ -65,9 +65,11 @@ const Gate = () => {

// 及时销毁 editor ,重要!
useEffect(() => {
if (editor == null) return
if (editor == null) return;
console.log('销毁');
editor.destroy()
setEditor(null)
setHtml('');
}, [isModalOpen])

/**


正在加载...
取消
保存