hinesboy / mavonEditor

mavonEditor - A markdown editor based on Vue that supports a variety of personalized features
http://www.mavoneditor.com/
MIT License
6.45k stars 918 forks source link

插入图片之后,@imgAdd绑定的函数为什么没有被触发 #578

Closed TaoFX closed 4 years ago

TaoFX commented 4 years ago

使用组件代码如下: <mavon-editor v-model="articleInfo.content" ref="md" style="min-height: 600px" @imgAdd="$imgAdd" />

绑定的方法如下: $imgAdd(pos, $file){ window.console.log("触发图片添加事件") window.console.log("图片位置:", pos) window.console.log($file) }

TaoFX commented 4 years ago

组件和$imgAdd()方法都绑定了,我插入图片的时候就是不触发这个方法

TaoFX commented 4 years ago

抱歉,我之前用错了,我之前一直是添加图片链接,所以没反应。点击上传图片的时候才会触发imgAdd事件。 如果有时间的话能否在文档中写上呢?