The difference and usage of Vue2 and Vue3 brother component communication bus

The difference and usage of Vue2 and Vue3 brother component communication bus

vue2.x

  1. Vue.prototype.$bus = new Vue()
  2. Listening: this.$bus.$on('method name', (parameters) => {}), it can be accumulated
  3. Trigger: this.$bus.$emit('method name', actual parameter value)
  4. Destroy: this.$bus.$off('method name'), whoever listens will destroy it
  5. Note: Since monitoring can be accumulated, a fourth step of destruction is required

vue3.x

tiny-emitter plugin usage

Install the plugin npm i tiny-emitter

Import and use

import emitter from 'tiny-emitter/instance'

import { onMounted } from 'vue'

setup(){
       onMounted(()=>{
      		Monitoring: emitter.on('Monitoring method name', (parameters) => {callback function})
      		Trigger: emitter.emit('listening method name', parameters)
      		Destruction: emitter.off('listening method name', parameter)
       }) 
}
	    

Mitt plugin usage

1. Install npm install

2. Import and use

import mitt from 'mitt'

Monitoring: bus.on('Monitoring method name', (parameters) => {callback function})

Trigger: bus.emit('listening method name', parameter)

Destruction: bus.off('listening method name', parameter)

The above is the difference and usage of the communication bus between Vue2 and Vue3 brother components. For more information about the usage of the communication bus between Vue2 and Vue3 brother components, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Vue.js parent-child component communication development example
  • Parent-child component communication in Vue and using sync to synchronize parent-child component data
  • Development of todolist component function in parent-child component communication in Vue
  • 12 types of component communications in Vue2
  • Summary of 10 component communication methods in Vue3

<<:  Example method to view the IP address connected to MySQL

>>:  Analyze the working principle of Tomcat

Recommend

Use CSS to easily implement some frequently appearing weird buttons

background In the group, some students will ask r...

mysql 8.0.16 winx64.zip installation and configuration method graphic tutorial

This article shares the specific code of MySQL 8....

How to verify whether MySQL is installed successfully

After MySQL is installed, you can verify whether ...

Graphical steps of zabbix monitoring vmware exsi host

1. Enter the virtualization vcenter, log in with ...

Use node-media-server to build a simple streaming media server

Record some of the processes of using node-media-...

Detailed explanation of data sharing between Vue components

Table of contents 1. In project development, the ...

Analysis of 2 Token Reasons and Sample Code in Web Project Development

Table of contents question: There are 2 tokens in...

Docker Basics

Preface: Docker is an open source application con...

A comprehensive summary of frequently used statements in MySQL (must read)

The knowledge points summarized below are all fre...

Docker-compose image release process analysis of springboot project

Introduction The Docker-Compose project is an off...

Detailed explanation of MySQL basic operations (Part 2)

Preface This article contains 1. Several major co...

Sample code for nginx to achieve dynamic and static separation

1. Simple configuration of nginx's dynamic an...

Detailed configuration of mysql8.x docker remote access

Table of contents Environmental conditions Errors...

Install tomcat and deploy the website under Linux (recommended)

Install jdk: Oracle official download https://www...