1.html

<input type="text" @change="specifiName($event)" />//输入框的change事件
<input type="text" @input="specifiName($event)" />//输入框的输入事件
<input type="text" @keyup.enter="specifiName($event)" />//输入框的回车事件
 

2.js
var vm = new Vue({
    el: "#app",
    methods: {
      specifiName(e) {
        var that = this;
        var val = e.target.value;
        console.log(val);
      },
    }
});