breaking change(Checkbox): need @click.stop inside a cell #7023

This commit is contained in:
chenjiahan
2020-10-02 21:36:31 +08:00
parent 839b8654ee
commit c0ea21dcd3
6 changed files with 17 additions and 19 deletions
+5 -1
View File
@@ -184,7 +184,11 @@ export default {
@click="toggle(index)"
>
<template #right-icon>
<van-checkbox :name="item" :ref="el => checkboxes[index] = el" />
<van-checkbox
:name="item"
:ref="el => checkboxes[index] = el"
@click.stop
/>
</template>
</van-cell>
</van-cell-group>