Steps for Vue3 to use mitt for component communication

Steps for Vue3 to use mitt for component communication
  • Vue2.x uses EventBus for component communication, while Vue3.x recommends using mitt.js.
  • What is the advantage of mitt.js over EventBus on Vue instances? First of all, it is small enough, only 200 bytes. Secondly, it supports monitoring and batch removal of all events. It does not rely on the Vue instance, so it can be used across frameworks. React or Vue, and even jQuery projects can use the same library.

1. Installation

It is recommended to use yarn installation (everyone who has used it knows how smooth it is)

yarn add mitt

Or install via npm

npm install --save mitt

2. Import into the project and mount

Can be mounted globally in main.js

// Standard ES modular import method import mitt from 'mitt'

const app = createApp(App)

// The global instance of vue3.x should be mounted on config.globalProperties app.config.globalProperties.$EventBus = new mitt()

/common/EventBus.js : You can also encapsulate an ES module and expose a Mitt instance to the outside world

import mitt from 'mitt'
export default new mitt()

/views/Home.vue : Business module is introduced for use

import EventBus from '/common/EventBus.js'

3. Use

Trigger via on listener/emit

/*
 * App.vue
 */
// There is no this in setup, you need to use getCurrentInstance to get the Vue instance import { getCurrentInstance } from 'vue'
import { Mp3Player } from '/common/Mp3Player.js'

export default {
  setup(){
    // ctx is equivalent to this in Vue2.x
    const { ctx } = getCurrentInstance()
    
    // Listen - if there is a new task, play the sound effect ctx.$EventBus.on('newTask', data => {
      Mp3Player.play()
    })

    // You can also listen to all tasks through *ctx.$EventBus.on('*', data => {
      console.log('EventBus come in', data)
    })
  }
}


/*
 * Control.vue
 */
// When a new task is detected, trigger ctx.$EventBus.emit('newTask', data)

off remove event

import {
    onBeforeUnmount,
    getCurrentInstance
  } from 'vue'

export default {
  setup(){
    const { ctx } = getCurrentInstance()

    onBeforeUnmount(() => {
      // Remove the specified event ctx.$EventBus.off('newTask')

      // Remove all events ctx.$EventBus.all.clear()
    })
  }
}

The above are the details of the steps for Vue3 to use mitt for component communication. For more information about Vue3 using mitt for component communication, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of non-parent-child component communication in Vue3
  • Details of 7 kinds of component communication in Vue3
  • Vue3.x uses mitt.js for component communication
  • Summary and examples of vue3 component communication methods

<<:  mysql5.7.21 utf8 encoding problem and solution in Mac environment

>>:  Linux configuration SSH password-free login "ssh-keygen" basic usage

Recommend

Tips and precautions for using MySQL index

1. The role of index In general application syste...

How to implement responsiveness in Vue source code learning

Table of contents Preface 1. Key Elements of a Re...

Not a Chinese specialty: Web development under cultural differences

Web design and development is hard work, so don&#...

The most detailed method to install docker on CentOS 8

Install Docker on CentOS 8 Official documentation...

Install zip and unzip command functions under Linux and CentOS (server)

Install zip decompression function under Linux Th...

Today I encountered a very strange li a click problem and solved it myself

...It's like this, today I was going to make a...

Detailed explanation of EXT series file system formats in Linux

Linux File System Common hard disks are shown in ...

Example of nginx ip blacklist dynamic ban

When a website is maliciously requested, blacklis...

Example of how to optimize MySQL insert performance

MySQL Performance Optimization MySQL performance ...

Solution to forgetting the password of the pagoda panel in Linux 3.X/4.x/5.x

Enter ssh and enter the following command to rese...

Linux CentOS6.5 yum install mysql5.6

This article shares the simple process of install...

vite2.x implements on-demand loading of ant-design-vue@next components

1. Use version vite:2.0 ant-design-vue: 2.0.0-rc....

MySQL InnoDB monitoring (system layer, database layer)

MySQL InnoDB monitoring (system layer, database l...

Summary of Common Terms in CSS (Cascading Style Sheet)

If you use CSS don't forget to write DOCTYPE, ...

Detailed steps to install MySQL 5.6 X64 version under Linux

environment: 1. CentOS6.5 X64 2.mysql-5.6.34-linu...