Vue two same-level components to achieve value transfer

Vue two same-level components to achieve value transfer

Vue components are connected, so it is inevitable that components need to pass values ​​to each other. Parent uses v-bind to bind custom attributes to child components and uses props to receive them.

The child uses @custom event = 'function' this.$emit('custom event', 'content to be sent') to the parent. The child component triggers the parent component's function through $emit to achieve this. However, two components of the same level pass values ​​to each other in this way.

<div id='app'>
 <children1></children1>
 <children2></children2>
</div>
<script>
  var children1 = {};
  var children2 = {};
 var vm = new Vue({
  el:'#app',
  components:{
   children1,
   children2
  }
 })
</script>

Now we need to pass the data in the children1 component to the children2 component

Mainly use $on() and $emit() in the vue instance

 <div id='app'>
  <children1></children1>
  <children2></children2>
 </div>
 <script>
     var Event = new Vue({}); // Create a vue instance to be used as a medium for value transfer var children1 = {
   template:`
    <div>
     <button @click='send'>Click me to send data to children2 component</button>
    </div>
   `,
   data(){
    return {
     msg:'I want to send data to children2'
    }
   },
   methods:{
    send(){ 
     Event.$emit('go',this.msg) 
    }
   }
  };
   var children2 = {
   template:`
    <div>
     <h2>Value received from children1 component: {{msg1}}</h2>  
    </div>
   `,
   data(){
    return {
     msg1:''
    }
   },
   created(){
    Event.$on('go',(v) => { // Must use arrow function because this
     this.msg1 = v;
    })
   }
  };
  var vm = new Vue({
   el:'#app',
   components:{
    children1,
    children2
   }
  })
</script>

The chilren1 component uses Event.$emit() to send data
The chilren2 component uses Eevent.$on() to receive data

This concludes this article on the implementation of value transfer between two Vue peer components. For more relevant Vue peer component value transfer content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to transfer or modify values ​​between two components in Vue
  • Detailed explanation of how Vue components transfer values ​​to each other
  • How do you know how to pass values ​​between Vue components?
  • How does Vue use store to transfer values ​​between two parallel components

<<:  Complete steps for deploying jar package projects using Shell scripts in Linux

>>:  MySQL startup error InnoDB: Unable to lock/ibdata1 error

Recommend

Using JS to implement a small game of aircraft war

This article example shares the specific code of ...

Summary of MySQL5 green version installation under Windows (recommended)

1 Download MySQL Download address: http://downloa...

WeChat applet scroll-view realizes left and right linkage

This article shares the specific code for WeChat ...

Detailed explanation of how to create MySql scheduled tasks in navicat

Detailed explanation of creating MySql scheduled ...

How does Zabbix monitor and obtain network device data through ssh?

Scenario simulation: The operation and maintenanc...

Example of creating table statements for user Scott in MySQL version of Oracle

Overview: Oracle scott user has four tables, whic...

CSS to achieve zoom in and out close button (example code)

This effect is most common on our browser page. L...

js basic syntax and maven project configuration tutorial case

Table of contents 1. js statement Second, js arra...

New ways to play with CSS fonts: implementation of colored fonts

What if you designers want to use the font below ...

How to view and terminate running background programs in Linux

Linux task management - background running and te...

Implementation of Vue 3.x project based on Vite2.x

Creating a Vue 3.x Project npm init @vitejs/app m...

Vue implements countdown between specified dates

This article example shares the specific code of ...

Key knowledge summary of Vue development guide

Table of contents Overview 0. JavaScript and Web ...

Docker deploys net5 program to achieve cross-platform functions

Deployment environment: docker container, liunx s...

Solve the problem of using linuxdeployqt to package Qt programs in Ubuntu

I wrote some Qt interface programs, but found it ...