elementui阻止el-checkbox内层冒泡

内层用div包起来,加点击事件阻止冒泡

<el-checkbox v-for="item in settingInfo.hi_photo" :key="item.id" :label="item.id">
    <div @click.stop.prevent="() => {}">
        <el-button></el-button>
    </div>
</el-checkbox>

猜你喜欢

转载自blog.csdn.net/starstarstarl/article/details/129021674