Home  >  Article  >  Web Front-end  >  How to implement component communication in vue-cli

How to implement component communication in vue-cli

亚连
亚连Original
2018-06-20 15:15:221678browse

This article mainly introduces the method of component communication in vue-cli. The editor thinks it is quite good. Now I will share it with you and give it as a reference. Let’s follow the editor and take a look.

This article introduces the method of component communication in vue-cli and shares it with everyone. The details are as follows:

There are three types of communication between vue components:

1. Parent component communicates with child component
2. Child component communicates with parent component
3. Same Communication between level components

1. Parent-to-child component communication

Take app.vue as the parent component, content. vue when a child component

1.Import the subcomponent in the parent component (subcomponent export)

import contents from './components/content';

2.Register the subcomponent in the parent component

  data() {
    return {
        test:'0'
    };
  },
  components:{
    'v-header':headers,
    'v-content':contents
  }

3.Subcomponent Receive data through props

2. Communication between child and parent component

Child component:



methods: {
  down() {
    this.$emit('down','null'); //主动触发down方法,'null'为向父组件传递的数据
  }
}

Parent component:

//监听子组件触发的down事件,然后调用changes方法

methods: { changes(msg) { this.test= test; } }

2. Non-parent-child component communication

//把a当作一个中转站
var a = new Vue();

Component 1 triggers:

methods:{ eve(){ a.$emit("change",'null') } }

Component 2 receives:

created(){ a.$on('change',()=>{ this.msg = 'null' }) }

The above is what I compiled for everyone, I hope it will be helpful to everyone in the future.

Related articles:

How to implement mobile adaptation in vue-cli

How to implement the display box in the Vue component Toast Effect

About rules parameter processing in webpack

How to implement simple calculations in AngularJS

The above is the detailed content of How to implement component communication in vue-cli. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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