在el-table的表格中嵌入el-switch

<el-table :data="tableData" border style="width: 100%" class="table">
	<el-table-column label="是否可用"  >
        <template #default="scope">
            <el-switch v-model="scope.row.isactive" @change="isactiveChanged(scope.row)" />
        </template>
    </el-table-column>
</el-table>

  

 

posted @ 2023-10-11 16:22  SHACK元  阅读(868)  评论(0编辑  收藏  举报