index.esm.js:23 Uncaught (in promise) Error: Cannot resolve a Slate range from DOM range:
使用wangEditor时报错
解决方法
在编辑器中添加v-if,使页面加载后添加编辑器
<el-drawer v-model="config.openDrawer" :size="config.formData.isEn === 2 ? '80%' : '40%'" :with-header="false">
<Editer v-if="config.openDrawer && item.type === 'rich'" v-model:value-html="config.formData.richTextContent"></Editer>
</el-drawer>