Methods for communication between Vue sibling components
In projects, we often encounter situations where sibling components communicate. In large projects, we can easily manage communication issues between components by introducing vuex, but in some small projects, we do not need to introduce vuex. The following is a brief introduction to the method of using traditional methods to achieve communication between parent and child components. This article mainly introduces the communication method of Vue brother components (without using Vuex). 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 to take a look, I hope it can help everyone.
Simple example: We click the button in component a and pass the information to component b, so that component b pops up.
The main idea is: First pass from son to father, then from father to son
First we pass it on in the a.vue component, Bind a handleClick event to the button botton. In the event, we use the this.$emit() method to trigger a custom event and pass our parameters.
In the example, we use this.$emit() to trigger the isLogFn method custom event and pass the log parameter out
a.vue
<template> <p class="ap"> <p>a组件</p> <button type="button" v-on:click="handleClick">点击打开组件b弹窗</button> </p> </template> <script> export default { methods: { handleClick () { this.$emit('isLogFn','log') } } } </script> <style> .ap{ width: 400px; height: 200px; border: 1px solid #000; margin: 0 auto; } </style>
The second step is to listen to this custom event in the parent component, trigger the corresponding method, and accept the parameters passed by the a component. At this point we have completed the process of passing values from the child component to the parent component.
In the example,
At this point, the whole process is not over yet, only half completed. Next, we need to complete the value transfer between the parent and child components and pass the information of component a to component b.
Bind the islog attribute in the tag and dynamically bind the login field in data. After we get 'data' through the lisLogFn method, we need to judge the data passed by data. According to Determine the result to change the data in data(), thereby passing the data to the b component
App.vue
<template> <p id="app"> <aPage @isLogFn = "lisLogFn"></aPage> <bPage :isLog = "login"></bPage> </p> </template> <script> import aPage from './components/a.vue' import bPage from './components/b.vue' export default { data () { return { login: 'false' } }, name: 'app', components: { aPage, bPage }, methods: { lisLogFn (data) { if (data == 'log') { this.login = 'true' } } } } </script> <style> </style>
Finally, the b component needs to be created props, define an isLog attribute, this attribute is the value we passed. We then process this data in a computed property, which is ultimately used by the b component. In the example, we use v-show="isLogin" to control whether the pop-up window is opened.
Remember! This props cannot be used directly. It must be processed by computed. The reason is that I quote the official vue description
One-way data flow
b.vue
<template> <p class="bp" v-show="isLogin">我是组件B弹窗</p> </template> <script> export default { props: ['isLog'], data () { return { } }, computed: { isLogin () { if(this.isLog == 'true'){ return true } else { return false } } } } </script> <style> .bp{ width: 200px; height: 200px; border: 1px #000 solid; margin: 0 auto; } </style>
Summary: If you want to implement value transfer between sibling components, you must first be familiar with the parent and child, and the value transfer between father and son.
Child and parent:
The child component needs to trigger a custom event in some way, such as a click event method
Put the value that needs to be passed as the second parameter of $emit, and the value will be passed as an actual parameter to the method that responds to the custom event
Register in the parent component Subcomponent and bind the listener for the custom event on the subcomponent tag
Parent and child:
The subcomponent creates a property in props , used to receive the value passed by the parent component
Add the attribute created in the subcomponent props to the subcomponent tag, and assign the value that needs to be passed to the subcomponent to the attribute
Related recommendations:
Detailed explanation of event bus non-parent-child component communication in vue
Vue.js component communication Detailed analysis of several postures
In-depth discussion of Vue.js components and component communication
The above is the detailed content of Methods for communication between Vue sibling components. For more information, please follow other related articles on the PHP Chinese website!

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Chinese version
Chinese version, very easy to use

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software