如何获得el-input输入框中的数据,适用于普通input

1,el-input


2,方法

测试

3,menthods

 methods:{
test(){
let no =  document.getElementById('aNo').value;
console.log(no)
}
}

这样就可以实现获得el-input输入框中的内容了,此方式对普通的input也适用

你可能感兴趣的:(elementui,vue.js,javascript)