imzbf / md-editor-v3

Markdown editor for vue3, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...
https://imzbf.github.io/md-editor-v3
MIT License
1.63k stars 156 forks source link

怎么取消点击事件的向上冒泡 #581

Closed HDP2017 closed 4 months ago

HDP2017 commented 4 months ago

Describe the issue

比如,图片的点击预览的点击,代码段的点击复制以及点击收起等这些事件,因为在组件的父级有其他点击监听,点了这几个事件后,会触发父级的事件,怎么配置可以处理这些?

Procedure version

vue3项目,4.16.7

Reproduction link

No response

imzbf commented 4 months ago

无法取消,建议你通过even.target判断触发事件的对象后选择是否执行操作

HDP2017 commented 4 months ago

好的,这样倒也可以解决问题,感谢。