ElementUI输入框组件

Posted 孟挽周

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ElementUI输入框组件相关的知识,希望对你有一定的参考价值。

Input 输入框

通过鼠标或键盘输入字符

<el-input> </el-input>

Input属性的使用

在这里插入图片描述
在这里插入图片描述

 	<el-input type="textarea" v-model="name" disabled show-password></el-input>
    <el-input type="textarea" show-word-limit textarea :maxlength="10000" v-model="age"></el-input>
    <el-input type="text" prefix-icon="el-icon-user" placeholder="请输入用户名" v-model="userName"></el-input>
    <el-input type="text" prefix-icon="el-icon-paperclip"></el-input>

在这里插入图片描述

事件的使用

在这里插入图片描述

    <el-input v-model="userSex" @input="ccc"></el-input>
   
    <script>
    export default {
        name: "Input",
        methods:{
            ccc(value){
              console.log(value)
            },
        }
    }
</script>

在这里插入图片描述

方法的使用

在这里插入图片描述

 <el-button @click="focusInputs">focus方法</el-button>

 <script>
    export default {
        methods:{
            focusInputs(){
              this.$refs.inputs.select();
          }
        }
    }
</script>

在这里插入图片描述

总结:

  • 在使用组件的方法时需要在对应的组件中加入 ref="组件别名"
  • 在调用方法时直接使用 this.$refs.组件别名.方法名()

注意:在elementui中所有组件 都存在 属性和方法
属性:直接写在对应的组件标签上 使用方式:属性名=属性值 方式
事件:直接使用vue绑定事件方式写在对应的组件标签上 使用方式:@事件名=vue中事件处理函数
方法:1.在对应组件标签上使用 ref=组件别名 2.通过使用this.$refs.组件别名.方法名() 进行调用。

以上是关于ElementUI输入框组件的主要内容,如果未能解决你的问题,请参考以下文章

elementui主题如何实现实时修改实时看到效果

使用elementUI的日期选择框,两选择框关联时间限值

elementui下拉框visible-change没反应

elementui 组件解释

elementprompt如何监听弹框出现

ElementUI+Vue的下拉框联动右边输入框自己敲