search
HomeWeb Front-endVue.jsHow to implement communication between sibling components in Vue?
How to implement communication between sibling components in Vue?Jul 17, 2023 pm 10:17 PM
props (properties)eventbus (event bus)vuex (state management)

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:

  1. 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()
  2. 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:

  1. 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')
  2. In components that require communication, use mapState and mapMutationsauxiliary 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:

  1. 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>
  2. 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 $childrenAttributes. 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!

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
What is Vuex and how do I use it for state management in Vue applications?What is Vuex and how do I use it for state management in Vue applications?Mar 11, 2025 pm 07:23 PM

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

How do I create and use custom plugins in Vue.js?How do I create and use custom plugins in Vue.js?Mar 14, 2025 pm 07:07 PM

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

What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?Mar 14, 2025 pm 07:05 PM

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

How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?Mar 11, 2025 pm 07:22 PM

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

How do I configure Vue CLI to use different build targets (development, production)?How do I configure Vue CLI to use different build targets (development, production)?Mar 18, 2025 pm 12:34 PM

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.

How do I use Vue with Docker for containerized deployment?How do I use Vue with Docker for containerized deployment?Mar 14, 2025 pm 07:00 PM

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

How do I use tree shaking in Vue.js to remove unused code?How do I use tree shaking in Vue.js to remove unused code?Mar 18, 2025 pm 12:45 PM

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

How can I contribute to the Vue.js community?How can I contribute to the Vue.js community?Mar 14, 2025 pm 07:03 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

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

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment