```
<template>
<div class="app-container">
<template>
<el-table
:data="userList"
stripe
style="width: 100%">
<el-table-column
prop="email"
label="邮箱" />
<el-table-column
prop="username"
label="姓名" />
<el-table-column
prop="is_active"
label="状态">
<template slot-scope="scope">
<el-switch v-model="scope.row.is_active" />
</template>
</el-table-column>
</el-table>
</template>
</div>
</template>
```
网友评论