Home Web Front-end Vue.js Vue component communication methods and their practices

Vue component communication methods and their practices

Oct 15, 2023 pm 01:25 PM
props event bus vue component communication

Vue component communication methods and their practices

Vue component communication methods and their practices

In the development of Vue, component communication is a very important concept. It allows us to split a complex application into multiple independent components, making the interaction between components more flexible and efficient. Vue provides a variety of communication methods for components. We can choose the appropriate method for data transfer and interaction between components according to actual needs. This article will introduce several common methods of Vue component communication and give corresponding code examples.

1. Props and Events
Props and Events are the most basic and commonly used component communication methods in Vue. Through Props, parent components can pass data to child components; through Events, child components can send messages to parent components.

  1. Props pass data
    The parent component passes data to the child component through the props attribute, and the child component receives the data through the props option.

Code example:

// 父组件
<template>
  <div>
    <child-component :message="parentMessage"></child-component>
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue'

export default {
  components: {
    ChildComponent
  },
  data() {
    return {
      parentMessage: 'Hello from parent component!'
    }
  }
}
</script>

// 子组件
<template>
  <div>{{ message }}</div>
</template>

<script>
export default {
  props: {
    message: String
  }
}
</script>
Copy after login

In this example, the parent component passes parentMessage to the child via :message="parentMessage" Component, and defines the data type received by the sub-component through props.

  1. Events send messages
    The child component sends messages to the parent component through the $emit method. The parent component receives messages by adding event listeners on the child component tags.

Code example:

// 父组件
<template>
  <div>
    <child-component @message="handleMessage"></child-component>
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue'

export default {
  components: {
    ChildComponent
  },
  methods: {
    handleMessage(message) {
      console.log(message)
    }
  }
}
</script>

// 子组件
<template>
  <button @click="sendMessage">Send Message</button>
</template>

<script>
export default {
  methods: {
    sendMessage() {
      this.$emit('message', 'Hello from child component!')
    }
  }
}
</script>
Copy after login

In this example, the child component passes this.$emit('message', 'Hello from child component!') To send a message, the parent component listens to the message of the child component through @message and processes it in the handleMessage method.

2. Vuex
Vuex is the official state management library of Vue. It provides a centralized way to manage application state and is used to solve the problem of sharing data between components.

The following are the basic steps for using Vuex for component communication:

  1. Create a Vuex store object.
  2. Define state in the store object, which is the state of the application.
  3. Use getters to define some derived states for obtaining and calculating state values.
  4. Use mutations to define some synchronization operations for modifying the value of state.
  5. Use actions to define some asynchronous operations to handle some complex business logic.
  6. Use this.$store.state in the component to get the value of state.

Code example:
The following is an example of a simple Vuex application. Suppose our application has a counter, and the value of the counter is incremented by clicking a button and displayed in the component.

// store.js
import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

export default new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    increment(state) {
      state.count++
    }
  },
  actions: {
    incrementCount({ commit }) {
      commit('increment')
    }
  }
})
Copy after login
// Counter.vue
<template>
  <div>
    <p>Count: {{ count }}</p>
    <button @click="incrementCount">Increment</button>
  </div>
</template>

<script>
export default {
  computed: {
    count() {
      return this.$store.state.count
    }
  },
  methods: {
    incrementCount() {
      this.$store.dispatch('incrementCount')
    }
  }
}
</script>
Copy after login

In this example, we define a state named count and a mutation named increment. In the component, we use this.$store.state.count to get the value of count, and call incrementCount when the button is clicked via this.$store.dispatch('incrementCount') action.

3. Event Bus
Event Bus is a simple but powerful component communication method that uses Vue instances as the central event bus. We can listen to custom events on any component and trigger corresponding events on other components.

The following are the basic steps for component communication using Event Bus:

  1. Create an Event Bus instance: const bus = new Vue()
  2. Use the bus.$on method in the event-listening component to listen for custom events.
  3. Use the bus.$emit method in the component that triggers the event to trigger the custom event.

Code example:

// Counter.vue
<template>
  <div>
    <p>Count: {{ count }}</p>
    <button @click="incrementCount">Increment</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      count: 0
    }
  },
  methods: {
    incrementCount() {
      this.count++
      this.$bus.$emit('count-updated', this.count)
    }
  },
  created() {
    this.$bus.$on('count-updated', (count) => {
      this.count = count
    })
  }
}
</script>

// main.js
import Vue from 'vue'

Vue.prototype.$bus = new Vue()

new Vue({
  render: h => h(App),
}).$mount('#app')
Copy after login

In this example, we create a data named count in the Counter component and increment the value of count by clicking the button. While incrementing count, we use this.$bus.$emit('count-updated', this.count) to trigger the count-updated event. In the created hook function of the Counter component, we use the this.$bus.$on method to listen to the count-updated event and update the value of count in the callback function.

Summary:
This article introduces several commonly used component communication methods in Vue and gives corresponding code examples. Props and Events are the most basic and commonly used component communication methods, suitable for data transfer and message sending between parent and child components. Vuex is a state management library used to manage application state. It is suitable for situations where state is shared between multiple components. Event Bus is a simple but powerful component communication method that can realize message passing between any components. According to actual needs, we can choose the appropriate component communication method to meet the interaction needs between different components. At the same time, more complex scenarios may require the use of other advanced component communication methods, such as provide/inject, etc. In the actual development process, we can flexibly use these component communication methods according to specific needs to achieve more efficient and flexible component interaction.

The above is the detailed content of Vue component communication methods and their practices. For more information, please follow other related articles on the PHP Chinese website!

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

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 Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use props and emits in vue3 and specify their type and default value How to use props and emits in vue3 and specify their type and default value May 19, 2023 pm 05:21 PM

Use of defineProps defineProps does not need to be introduced when using it, and it is a global method by default. Use constprops=defineProps({attr1:{type:String,//S must be capitalized default:"",},attr2:Boolean,attr3:{type:Number,required:true,},} in the vue3 project developed by js ); The usage in js environment is similar to that of vue2, except that the optional API is replaced by a combined API. The defined props type and default value are both the same as the vue2 type, which is used in vue3

How to use props and emit in Vue3 How to use props and emit in Vue3 May 26, 2023 pm 06:13 PM

Function: The parent component passes data down to the child component through props; Purpose: When a type of component needs to be used multiple times, each call is only different in specific places, just like a personal profile form, which needs to be filled out each time. The information is different for each person, but the structure is the same. Usage 1 (simple acceptance without specifying the type): Introduce the subcomponent into the parent component, pass the parameters through the label attribute of the subcomponent, and define a props option in the subcomponent for reception and use. Note that there is no need to add props in the subcomponent. Other places are defined in advance above. You can see that the age passed in is a string type. If you want the passed in value to be automatically increased by 1, you cannot add 1 when using the subcomponent. As shown in the figure below, it will become a string.

How to solve Vue error: Unable to use props to pass data How to solve Vue error: Unable to use props to pass data Aug 17, 2023 am 10:06 AM

How to solve Vue error: Unable to use props to pass data Preface: During the development process of Vue, it is very common to use props to transfer data between parent and child components. However, sometimes we may encounter a problem, that is, when using props to pass data, an error will occur. This article will focus on how to solve the error that props cannot be used to pass data in Vue. Problem description: In Vue development, when we use props in the parent component to pass data to the child component, if

How to implement communication between components through event bus in Vue How to implement communication between components through event bus in Vue Oct 15, 2023 am 08:30 AM

How to implement communication between components through the event bus in Vue requires specific code examples. The event bus is a common component communication mechanism in Vue. It allows concise and flexible communication between different components without explicitly introducing parent and child. Component relationships or using state management libraries such as Vuex. This article will introduce how to implement communication between components through the event bus in Vue, and provide specific code examples. What is an event bus? An event bus is a mechanism for passing messages between components. In Vue, we can use V

What is the event bus in Vue and how to use it? What is the event bus in Vue and how to use it? Jun 11, 2023 pm 07:39 PM

Vue is a very popular JavaScript framework that helps us build complex interactive interfaces with responsive data binding and componentization ideas. In Vue, we often need to transfer data and trigger events between components, and the event bus is a very useful solution. 1. What is an event bus? The event bus is a central event manager that allows communication between different components, enabling event delivery and data sharing across components. In Vue, we can pass

How to use the props and context parameters of the SetUp function in Vue3 How to use the props and context parameters of the SetUp function in Vue3 May 22, 2023 pm 09:49 PM

1. The first parameter of the setUp function propssetup (props, context) {} The first parameter props: props is an object that contains all the data passed by the parent component to the child component. Use props in child components to receive. An object containing all the properties declared and passed in the configuration. That is to say: if you want to output the value passed by the parent component to the child component through props. You need to use props for receiving configuration. That is, props:{......} If you do not accept configuration through Props, the output value is undefined parent component importNoContfrom"../componen

VUE3 basic tutorial: props and computed using Vue.js responsive framework VUE3 basic tutorial: props and computed using Vue.js responsive framework Jun 15, 2023 pm 08:44 PM

Vue.js is a popular JavaScript framework for building web applications with responsive systems. Vue.js provides an easy-to-use set of directives and components to simplify the development process. In this article, we will learn an important concept - props and computed. Props are the way to pass information in Vue.js components. It allows us to pass data from parent component to child component. In child components, we can use the passed data for binding and processing

Vue component communication: using props for parent-child component communication Vue component communication: using props for parent-child component communication Jul 07, 2023 pm 10:06 PM

Vue component communication: using props for parent-child component communication In Vue development, component communication is a very important concept. When we need to pass data from one component to another, we can use Vue's props property for parent-child component communication. This article will introduce how to use props attributes for communication between components and provide some code examples. 1. What is props attribute? Props is an important attribute in Vue, which is used to receive data passed from parent components to child components. parent component

See all articles