元素中有图片时,元素外层点击事件在某些浏览器(qq浏览器)中无效,会被默认拦截成图片预览,无法执行预期事件。

解决方法:

<div @click="go">
    <img src="./logo.png" onclick="return false" alt="" />
</div>