Commit b8ab6355bc085a38c608e3472fefad96ec023c60

Authored by ly525
1 parent d1dcd2a2

chore: comment error message tip #!zh: 更新错误提示

front-end/h5/src/components/core/editor/right-panel/props.js
@@ -43,9 +43,9 @@ export default { @@ -43,9 +43,9 @@ export default {
43 import(`core/plugins/${this.editingElement.name}__editor`).then(component => { 43 import(`core/plugins/${this.editingElement.name}__editor`).then(component => {
44 this.loadCustomEditorFlag = true 44 this.loadCustomEditorFlag = true
45 Vue.component(this.customEditorName, component.default) 45 Vue.component(this.customEditorName, component.default)
46 - }).catch(err => {  
47 - console.log(err)  
48 - console.warn('没有发现组件对应的编辑器') 46 + }).catch(_err => {
  47 + // console.log(err)
  48 + // console.warn('没有发现组件对应的编辑器')
49 }) 49 })
50 } 50 }
51 }, 51 },