vue 中 的复选框change事件触发两次

说明:在项目中使用了element框架,在el-table中嵌套了el-checkbox,代码和渲染效果如下,当点击复选框时要做一些事情。
问题:当点击复选框时,事件函数chooseChange会偶尔触发两次,并且获取到的checked是相反的。这是为什么呢?如何解决?

<el-table :data="tableData">

<el-table-column label="操作">

<template slot-scope="{ row }">

<el-checkbox v-model="row.checked" @change="chooseChange"></el-checkbox>

</template>

</el-table-column>

</el-table>

vue 中 的复选框change事件触发两次

以上是 vue 中 的复选框change事件触发两次 的全部内容, 来源链接: utcz.com/p/936133.html

回到顶部