Home Web Front-end Vue.js Method functions in Vue3: Master the method of communication between Vue3 components

Method functions in Vue3: Master the method of communication between Vue3 components

Jun 18, 2023 pm 02:13 PM
vue Component communication method function

Vue3 is one of the most popular front-end frameworks currently. It is highly praised for its powerful features and simple and easy-to-use API. Vue3 provides many ways to organize and interact with various components, including inter-component communication, state management, dynamic components, etc. In Vue3, we can use some method functions to implement communication between components. Let us master these methods.

  1. props

props is an important feature of Vue3. It is a way to define the properties of components and transfer data. If you need to pass data from a component to its child components, you can use props. You can specify an array in the props option in the child component, which contains the properties you want to accept. When you pass properties from a parent component, these properties are automatically passed to and available in the child component. The following is a simple example:

<template>
  <div>
    <Child :message="message" />
  </div>
</template>
<script>
import Child from './Child.vue'
export default {
  components: { Child },
  data() {
    return {
      message: 'Hello World!'
    }
  }
}
</script>
Copy after login

In the Child component, we can receive data through props:

<template>
  <div>
    <p>{{ message }}</p>
  </div>
</template>
<script>
export default {
  props: {
    message: {
      type: String,
      required: true
    }
  }
}
</script>
Copy after login
Copy after login

Note that the type of each attribute needs to be specified in the props option, so that This ensures that the data type passed into the child component is correct.

  1. emit

emit is another commonly used inter-component communication method in Vue3. When you need to trigger an event in a child component, you can use the emit method. In the parent component, you can listen to this event and perform some operations. The following is a simple example:

<template>
  <div>
    <Child @alert="showAlert" />
  </div>
</template>
<script>
import Child from './Child.vue'
export default {
  components: { Child },
  methods: {
    showAlert(msg) {
      alert(msg)
    }
  }
}
</script>
Copy after login

In the Child component, we can use $emit to trigger an event:

<template>
  <div>
    <button @click="onClick">Click Me</button>
  </div>
</template>
<script>
export default {
  methods: {
    onClick() {
      this.$emit('alert', 'Hello World!')
    }
  }
}
</script>
Copy after login

When the user clicks the button, the child component will trigger an alert event, and pass a message to the parent component.

  1. provide/inject

provide/inject is another inter-component communication method provided by Vue3. It is slightly different from props and emit in that it allows you to provide some data to the child component. Child components can receive this data through the inject option. The following is a simple example:

<template>
  <div>
    <Child />
  </div>
</template>
<script>
import Child from './Child.vue'
export default {
  provide: {
    message: 'Hello World!'
  },
  components: { Child }
}
</script>
Copy after login

In the Child component, we can use the inject option to receive this data:

<template>
  <div>
    <p>{{ message }}</p>
  </div>
</template>
<script>
export default {
  inject: ['message']
}
</script>
Copy after login

Note that the name of the data that needs to be received is specified in the inject option. This way you can use it directly in child components.

  1. $parent / $children

$parent and $children are two other tools for communication between components provided by Vue3. $parent is used from a child component to access properties or methods in its parent component, while $children is used from a parent component to access properties or methods in its child components. Since these two options are provided in Vue3, they may be abandoned in future versions of Vue3.

  1. $attrs / $listeners

$attrs and $listeners are two magical options provided by Vue3. The $attrs option provides the component with all the attributes passed to it, and they can be used with the child component's props option as follows:

<template>
  <div>
    <Child v-bind="$attrs" />
  </div>
</template>
<script>
import Child from './Child.vue'
export default {
  components: { Child },
  data() {
    return {
      message: 'Hello World!'
    }
  },
  mounted() {
    console.log(this.$attrs) // { message: "Hello World!" }
  }
}
</script>
Copy after login

In the Child component:

<template>
  <div>
    <p>{{ message }}</p>
  </div>
</template>
<script>
export default {
  props: {
    message: {
      type: String,
      required: true
    }
  }
}
</script>
Copy after login
Copy after login

In In the above example, the subcomponent can use the $attrs option to receive and define the corresponding props options. The

$listeners option provides the component with all event listeners in the parent component. This will allow you to use these event listeners in child components. As shown below:

<template>
  <div>
    <button v-on="$listeners">Click Me</button>
  </div>
</template>
<script>
export default {
  mounted() {
    console.log(this.$listeners) // { 'click': [f1] }
  }
}
</script>
Copy after login

When the user clicks the button, the event listener in the parent component will be fired.

Summary

This article lists the commonly used inter-component communication methods in Vue3. These methods include: props, emit, provide/inject, $parent/$children, and $attrs/$listeners. These methods can help you better organize and interact with various components, improve your development efficiency and improve user experience. In practice, you may need to use multiple methods simultaneously to achieve your business goals, so make sure you are aware of the options and know when and where they apply.

The above is the detailed content of Method functions in Vue3: Master the method of communication between Vue3 components. 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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks 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)

Why is there no page request information on the console network after vue-router jump? Why is there no page request information on the console network after vue-router jump? Apr 04, 2025 pm 05:27 PM

Why is there no page request information on the console network after vue-router jump? When using vue-router for page redirection, you may notice a...

How to use Vue to implement electronic quotation forms with single header and multi-body? How to use Vue to implement electronic quotation forms with single header and multi-body? Apr 04, 2025 pm 11:39 PM

How to implement electronic quotation forms with single header and multi-body in Vue. In modern enterprise management, the electronic processing of quotation forms is to improve efficiency and...

How to implement the photo upload function of high-photographers of different brands on the front end? How to implement the photo upload function of high-photographers of different brands on the front end? Apr 04, 2025 pm 05:42 PM

How to implement the photo upload function of different brands of high-photographers on the front end When developing front-end projects, you often encounter the need to integrate hardware equipment. for...

How to achieve segmentation effect with 45 degree curve border? How to achieve segmentation effect with 45 degree curve border? Apr 04, 2025 pm 11:48 PM

Tips for Implementing Segmenter Effects In user interface design, segmenter is a common navigation element, especially in mobile applications and responsive web pages. ...

Does JavaScript naming specification raise compatibility issues in Android WebView? Does JavaScript naming specification raise compatibility issues in Android WebView? Apr 04, 2025 pm 07:15 PM

JavaScript Naming Specification and Android...

How to use el-table to implement table grouping, drag and drop sorting in Vue2? How to use el-table to implement table grouping, drag and drop sorting in Vue2? Apr 04, 2025 pm 07:54 PM

Implementing el-table table group drag and drop sorting in Vue2. Using el-table tables to implement group drag and drop sorting in Vue2 is a common requirement. Suppose we have a...

How to make sure the bottom of a 3D object is fixed on the map using Mapbox and Three.js in Vue? How to make sure the bottom of a 3D object is fixed on the map using Mapbox and Three.js in Vue? Apr 04, 2025 pm 06:42 PM

How to use Mapbox and Three.js in Vue to adapt three-dimensional objects to map viewing angles. When using Vue to combine Mapbox and Three.js, the created three-dimensional objects need to...

See all articles