正常显示,但是点击无反应,加了点击事件也没反应。
<el-table-column
label="状态"
width="180"
>
<template slot-scope="{row}">
<el-switch
v-value="row.status == 1"
@click="modifyState(row)"
/>
</template>
</el-table-column>
修改:
<el-table-column
label="状态"
width="180"
>
<template slot-scope="{row}">
<el-switch
v-model="row.status"
:active-value="1"
:inactive-value="0"
@change="modifyState(row)"
/>
</template>
</el-table-column>
完成,可以正常使用