[Vuejs]-Vue click two input one button

0👍

Bind input to properties using v-model like :

 input  id="PriceRangeMin" type="number" v-model='text' >

then use this to access that properties inside the method :

    textcon(){
        
        console.log(this.text)
        console.log(this.text1)
    }

Leave a comment