码迷,mamicode.com
首页 > 其他好文 > 详细

bus(总线传值-非父子间传值)

时间:2020-03-29 17:58:14      阅读:463      评论:0      收藏:0      [点我收藏+]

标签:one   rip   new   methods   assm   util   pre   nts   temp   

bus.js

import Vue from ‘vue‘
export default new Vue

App.vue

<template>
  <div id="app">
    <button @click="passMsg">传你</button>
    <my-parent></my-parent>
  </div>
</template>

<script>
import bus from "./util/bus";
import MyParent from "./views/Parent";
export default {
  components: {
    MyParent
  },
  methods: {
    passMsg() {
      bus.$emit("msg", "i am from app");
    }
  }
};
</script>
<style>
</style>

Child.vue

<template>
  <div>
    <h2>Child--{{childMsg}}</h2>
  </div>
</template>

<script>
import bus from "../util/bus";
export default {
  data() {
    return {
      childMsg: ""
    };
  },
  mounted() {
    bus.$on("msg", val => {
      this.childMsg = val;
    });
  }
};
</script>

<style>
</style>

bus(总线传值-非父子间传值)

标签:one   rip   new   methods   assm   util   pre   nts   temp   

原文地址:https://www.cnblogs.com/xl4ng/p/12593581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!