
vue 默认只能在元素dom上面加点击事件,否则你给组件加上点击事件是没有效果的。
解决方案:
可以在组件的事件后面加.native
<goods-item
v-for="(item,index) in list"
:key="index"
:image="item.goods.image"
:title="item.goods.title"
:price="item.product.price"
:stock="item.product.stock"
image-position="left"
class="list-item"
@click.native="onClick()"
/>