vue+element+input+@input获取event事件值

Posted web半晨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue+element+input+@input获取event事件值相关的知识,希望对你有一定的参考价值。


1、正常写法(获取不到event的值)

<div id="app">
	<template>
		<el-row>
			<el-col :span="12">
				<el-input 
					style="width: 60%" 
					v-model="value" 
					placeholder="请输入" 
					@input="inputValue($event, value)"
				>
				</el-input>
			</el-col>
		</el-row>
	</template>
</div>

inputValue函数获取到两个一样的值,这里的value用法和v-model一样。


2、添加修饰事件(native)

<div id="app">
	<template>
		<el-row>
			<el-col :span="12">
				<el-input 
					style="width: 60%" 
					v-model="value" 
					placeholder="请输入" 
					@input.native="inputValue($event, value)"
				>
				</el-input>
			</el-col>
		</el-row>
	</template>
</div>

inputValue函数会分别获取到$event和value的值,这里的value用法和v-model一样。

以上是关于vue+element+input+@input获取event事件值的主要内容,如果未能解决你的问题,请参考以下文章

21-Vue之Element UI-input组件

vue使用element-ui的el-input监听不了键盘事件解决

vue使用element-ui的el-input监听不了键盘事件解决

vue使用element-ui的el-input监听不了键盘事件解决

vue2.0结合Element实现select动态控制input禁用

vue element-ui 动态生成el-table 自定义input input赋值问题