10_ElementUI 复合型输入框input

1、Element ui中给出的案例

在这里插入图片描述

<div>
  <el-input placeholder="请输入内容" v-model="input1">
    <template slot="prepend">Http://</template>
  </el-input>
</div>
<div style="margin-top: 15px;">
  <el-input placeholder="请输入内容" v-model="input2">
    <template slot="append">.com</template>
  </el-input>
</div>
<div style="margin-top: 15px;">
  <el-input placeholder="请输入内容" v-model="input3" class="input-with-select">
    <el-select v-model="select" slot="prepend" placeholder="请选择">
      <el-option label="餐厅名" value="1"></el-option>
      <el-option label="订单号" value="2"></el-option>
      <el-option label="用户电话" value="3"></el-option>
    </el-select>
    <el-button slot="append" icon="el-icon-search"></el-button>
  </el-input>
</div>
<style>
  .el-select .el-input {
    width: 130px;
  }
  .input-with-select .el-input-group__prepend {
    background-color: #fff;
  }
</style>
<script>
export default {
  data() {
    return {
      input1: '',
      input2: '',
      input3: '',
      select: ''
    }
  }
}
</script>

2、正确的编写方式

在这里插入图片描述

       <el-table-column label="科目编码" width="170px" align="center" prop="subjectCode">
              <template #default="{ row }">
                <el-input :disabled="inputDisabled" v-model="row.subjectCode" size="small">
                  <template #append>
                    <el-button size="mini" type="primary"  
                    @click="selectsubjectCode(row)">查看</el-button>
                  </template>
                </el-input>
              </template>
            </el-table-column>

3、错误的编写方式

            <el-table-column label="科目编码" width="170px" align="center" prop="subjectCode">
              <template #default="{ row }">
                <el-input-group>
                  <el-input :disabled="inputDisabled" v-model="row.subjectCode" size="small">
                    <template #append>
                      <el-button size="mini" type="primary"
                        @click="selectsubjectCode(row)">查看</el-button>
                    </template>
                  </el-input>
                </el-input-group>
              </template>
            </el-table-column>

4、 如果出现报错

Unknown custom element: el-input-group - did you register the component >correctly? For recursive components, make sure to provide the “name” option.
如下图

在这里插入图片描述

需要从你的模板中移除 el-input-group 标签,因为Element UI的 el-input 组件直接支持在输入框旁边添加按钮,无需使用 el-input-group
改成 第二点 正确的编写方式

这样修改后,你的代码应该不再抛出关于 el-input-group 的错误,并且每个“科目编码”列下的单元格都将显示一个带有“查看”按钮的小型输入框。当用户点击“查看”按钮时,selectsubjectCode方法会被调用,并传入当前行的数据row。确保你的Vue应用已经正确导入并使用了Element UI库,这样才能正常使用 el-input 和 el-button 组件。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一只嘉祺

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值