我爱模板网在使用vue版的form-create-design做表单设计器时,在设计模式,也就是用fc-designer时,拖进去了富文本框,并且一切正常,当保存后,在回显模式下,用form-create进行回显,发现提示下面的错误:
Unknown custom element: <fc-editor> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
找不到富文本组件,在官网一番查找,发现组件默认不支持,需要额外引入,也就是说,form-create-design集成了富文本,不需要引入,但是,form-create并没有集成。但是form-create-design插件已经包含了富文本,所以,在main.js,引入下面代码,将FcEditor放到form-create中就可以了:
import FcEditor from "@form-create/component-wangeditor"; formCreate.component('FcEditor', FcEditor);
顺利解决。