Skip to content
On this page

v-model

Title
v-model
Category
Vue
Tags
Aliases
v-model
Created
2 years ago
Updated
last year
vue
<input v-model="message" placeholder="edit me">
<p>Message is: {{ message }}</p>
<input v-model="message" placeholder="edit me">
<p>Message is: {{ message }}</p>
  • 폼 요소의 value , checked , selected 속성을 모두 무시한다.
  • Vue 인스턴스의 data를 two-way 바인딩하여 사용한다.
  • Input text 타입에 대해서는 v-bind:valuev-on:input 을 조합해서 만들었다.
    • 각 폼 요소 및 타입마다 조합이 다를 수는 있다.

Form Input Bindings — Vue.js (vuejs.org)

의문점

Released under the MIT License.