element-ui关于el-select的下拉框选项匹配不到数据

element-ui关于el-select的下拉框选项匹配不到数据,第1张

// An highlighted block
  <div class="mrleft10 width60">
                <el-select v-model="itemp.id"
                           class="m-2"
                           :filterable="true"
                           @change="getSelect(index,itemp)"
                           size="large">

                  <el-option v-for="item in state.fistData"
                             :key="item.value"
                             :label=" item.spec"
                             :value="item.detailId" />

                  <el-option v-if="isNaN(itemp.spec)"
                             :value="itemp.id"
                             label="商品不存在"
                             :key="itemp.value" />

                </el-select>

              </div>

:filterable=“true”

就这个

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/878202.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存