[Vuejs]-How to extract the value of textbox (V-Model)?

0👍

You have access to the inputs value as the input and user.name have a two-way binding through v-model:

new Vue({
  el: "#app",
  data: {
    user: {
      name: ""
    }
  }
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
  <input v-model="user.name" /> {{ user.name }}
</div>

Leave a comment