Answers for "vuejs input call the value"

0

vuejs input call the value

<input type="text" v-model="name" />
<p>My name is {{ name }}</p>


//.. Vue file

data(){
  return {
    name = ''
  }
}
Posted by: Guest on December-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language