vue中的富文本编辑器,vue2-editor, 使用 use-custom-image-handler 自定义图片上传的时候 @imageAdded 不触发,无效;
@imageAdded="handleImageAdded"
这里不要使用驼峰,否则无法触发此事件
解决:写成这样就可以了
@image-added="handleImageAdded"
vue中的富文本编辑器,vue2-editor, 使用 use-custom-image-handler 自定义图片上传的时候 @imageAdded 不触发,无效;
@imageAdded="handleImageAdded"
这里不要使用驼峰,否则无法触发此事件
解决:写成这样就可以了
@image-added="handleImageAdded"