2018-07-04 vue select 写法
2018-07-04 本文已影响15人
scoot929
对于对象数组类型:
<el-option v-for="item in form.alerts" :key="item.id" :label="item.id+item.name" :value="item.id"></el-option>
简单的数组类型:
<el-option v-for="(value,key) in form.departments" :key=key :label=value :value=key></el-option>