Home  >  Article  >  Web Front-end  >  How vue.js implements two-way binding of components

How vue.js implements two-way binding of components

零到壹度
零到壹度Original
2018-04-03 17:50:221747browse

This article mainly introduces how vue.js implements two-way binding of components. The editor thinks it is quite good, so I will share it with you now and give it as a reference. Let’s follow the editor and take a look.

Overview: Component communication is through props. Props default to one-way binding (parent->child). In addition to publishing and subscribing events, another communication Method two-way binding (parent->child, child->parent)

1. Use the .sync (synchronization) modifier

. Properties to be bidirectionally bound use the .sync (synchronization) modifier

. Use .$emit to publish an update event

.Essence is a packaged syntax sugar



##2. Use v-model, which is more convenient

.props is received and fixed with value (, Can be customized) to accept the value of v-model

.emit publishes an event that triggers input by itself (fixed, can be customized)

.Essence is a packaged syntax sugar




##related suggestion:

Vue component implements two-way binding of forms

Vue parent component and child component implement two-way data binding through sync

In-depth understanding of the principle and implementation of vue two-way data binding

The above is the detailed content of How vue.js implements two-way binding of components. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:Reverse use of AjaxNext article:Reverse use of Ajax