iview Select 选择器 获取选中项的多个相关值

在option选项的点击事件上加修饰符.native,否则事件不生效。
          <Select
            transfer
            v-model="dictValueMaps[index].dictValueId"
            placeholder="请选择字段类型"
          >
              <Option
                :value="item.id"
                v-for="item in dictValueNameList"
                :key="item.id"
                @click.native="changeCode(item, index)"
              >
                {{ item.dictItemName }}
              </Option>
          </Select>

你可能感兴趣的:(前端)