```
~~~
<template>
<div class="ele-body">
<el-card shadow="never" header="多选">
<sohelp-table-field :multiple="true" value-key="id" label-key="login_name" refid="用户管理!列表"></sohelp-table-field>
</el-card>
<el-card shadow="never" header="单选">
<sohelp-table-field :multiple="false" value-key="id" label-key="login_name" refid="用户管理!列表"></sohelp-table-field>
</el-card>
</div>
</template>
<script>
import SohelpTableField from "@/components/sohelp-ele/components/sohelp-table-field/index";
export default {
name: "index",
components: {SohelpTableField}
}
</script>
<style scoped>
</style>
~~~
```