Home > Web Front-end > Vue.js > body text

What is the usage of v-model in vue

WBOY
Release: 2022-03-18 15:33:42
Original
7301 people have browsed it

In vue, "v-model" is used to bind form input to the corresponding model data, which can achieve two-way binding; it includes "v-bind" binding value attribute and "v-on" "Listen to the input event of the form element and change the data. The syntax is "v-model="message"".

What is the usage of v-model in vue

The operating environment of this article: Windows 10 system, Vue version 2.9.6, DELL G3 computer.

What is the usage of v-model in vue

v-model can bind form input to the corresponding model data

We use v-model to implement a simple Requirements

Bind the model data message through the form input, and the data.message will also change when the form data changes

Then use the Mustache expression to display the changed message data on the view page

v-model is actually a syntax sugar, which is an abbreviation. It actually contains two operations:

  • v-bind binding value attribute

  • v-on listens to the input event of the form element and changes the data

Basic usage of v-model

(1)Basic usage

<div id="app">
  <input type="text" v-model="message">
  {{message}}
</div>
<script src="../js/vue.js"></script>
<script>
  const app = new Vue({
    el: &#39;#app&#39;,
    data: {
      message: &#39;hello&#39;
    }
  })
</script>
Copy after login

v-model can achieve two-way binding of data. The common way is that the page obtains data from data. Using v-model can achieve two-way binding, that is, when the page changes, the data will also change

(2) Implementation principle

<div id="app">
  <input type="text" :value="message" @input="message = $event.target.value">
  <h2>{{message}}</h2>
</div>
<script src="../js/vue.js"></script>
<script>
  const app = new Vue({
    el: &#39;#app&#39;,
    data: {
      message: &#39;hello&#39;
    },
    methods: {
      valueChange(event) {
        this.message = event.target.value;
      }
    }
  })
</script>
Copy after login

This is a manually implemented two-way binding

[Related recommendations: "vue.js Tutorial"]

The above is the detailed content of What is the usage of v-model in vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
vue
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!