Vue is a progressive framework for building user interfaces. It uses componentization ideas to build the entire application. In Vue, each component can be developed and maintained independently, but sometimes we need to implement communication between sibling components. This article will introduce several methods to implement sibling component communication in Vue and provide code examples.
1. Using the event bus
The event bus is a simple communication method that allows components that are not directly related to communicate. In Vue, we can use an empty Vue instance as the event bus. The specific implementation steps are as follows:
-
Create an empty Vue instance as the event bus, which can be named
bus
, and export it to the component that requires communication.// bus.js import Vue from 'vue' export default new Vue()
-
In the component that requires communication, use the
$emit
method to trigger an event, and use the$on
method to listen to the event.// ComponentA.vue import bus from 'bus.js' export default { methods: { handleClick() { bus.$emit('custom-event', data) } } }
// ComponentB.vue import bus from 'bus.js' export default { mounted() { bus.$on('custom-event', this.handleEvent) }, methods: { handleEvent(data) { console.log(data) } } }
The advantage of using the event bus is that it is simple to implement, but it is global and may lead to poor code readability and maintainability.
2. Use Vuex
Vuex is Vue’s official state management library. It provides a centralized storage for applications and can share state across components. Through Vuex, we can easily implement communication between sibling components. The specific implementation steps are as follows:
-
Install Vuex and configure it in the Vue instance.
// main.js import Vuex from 'vuex' import Vue from 'vue' Vue.use(Vuex) const store = new Vuex.Store({ state: { message: '' }, mutations: { updateMessage(state, payload) { state.message = payload } } }) new Vue({ store, render: h => h(App) }).$mount('#app')
-
In components that require communication, use
mapState
andmapMutations
auxiliary functions to obtain and operate the state in Vuex.// ComponentA.vue import { mapState, mapMutations } from 'vuex' export default { computed: { ...mapState(['message']) }, methods: { ...mapMutations(['updateMessage']), handleClick() { this.updateMessage('Hello from ComponentA') } } }
// ComponentB.vue import { mapState } from 'vuex' export default { computed: { ...mapState(['message']) } }
The advantage of using Vuex is that it provides a centralized state management mechanism to facilitate communication and state management between components. But it needs to be introduced throughout the application and the state needs to be maintained.
3. Use $parent and $children attributes
In Vue, each component instance has $parent
and $children
attributes, They enable communication between sibling components. The specific implementation steps are as follows:
-
In the parent component, pass the data to the child component.
// ParentComponent.vue <template> <div> <ChildComponent :data="message"></ChildComponent> </div> </template> <script> export default { data() { return { message: 'Hello from ParentComponent' } } } </script>
-
In the child component, obtain the data of the parent component through the
$parent
attribute.// ChildComponent.vue <template> <div> <p>{{ $parent.message }}</p> </div> </template>
The advantage of using the $parent
and $children
properties is that it is simple to implement, but it is based on Vue's component tree structure. If the component The hierarchy is deep, may not be intuitive, and relies heavily on changes to component structure.
To sum up, we have introduced three methods to implement sibling component communication in Vue: using event bus, using Vuex and using $parent
and $children
Attributes. According to different needs and scenarios, we can choose the most suitable method to achieve communication between components.
The above is the detailed content of How to implement communication between sibling components in Vue?. For more information, please follow other related articles on the PHP Chinese website!

This article explains Vuex, a state management library for Vue.js. It details core concepts (state, getters, mutations, actions) and demonstrates usage, emphasizing its benefits for larger projects over simpler alternatives. Debugging and structuri

Article discusses creating and using custom Vue.js plugins, including development, integration, and maintenance best practices.

Vue.js enhances web development with its Component-Based Architecture, Virtual DOM for performance, and Reactive Data Binding for real-time UI updates.

This article explores advanced Vue Router techniques. It covers dynamic routing (using parameters), nested routes for hierarchical navigation, and route guards for controlling access and data fetching. Best practices for managing complex route conf

The article explains how to configure Vue CLI for different build targets, switch environments, optimize production builds, and ensure source maps in development for debugging.

The article discusses using Vue with Docker for deployment, focusing on setup, optimization, management, and performance monitoring of Vue applications in containers.

The article discusses using tree shaking in Vue.js to remove unused code, detailing setup with ES6 modules, Webpack configuration, and best practices for effective implementation.Character count: 159

The article discusses various ways to contribute to the Vue.js community, including improving documentation, answering questions, coding, creating content, organizing events, and financial support. It also covers getting involved in open-source proje


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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

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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
