vue

作者: a飞机 | 来源:发表于2018-12-15 21:09 被阅读0次

```

<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>

```

相关文章

网友评论

      本文标题:vue

      本文链接:https://www.haomeiwen.com/subject/kyhzhqtx.html