vuejs 获取input的值

使用 refv-modelfunction(e)


 




// @input 输入事件,实时监听
 

methods: {
    test1: function () {
        console.log( this.$refs.input1.value ); 
    },

    test2: function () {
        console.log( this.input2 );
    },

    test3(e){
      //e.target 指向了dom元素
      console.log( e.target.value ); 
    }
}

你可能感兴趣的:(vuejs 获取input的值)