Bootstrap

vue组件传值之发布订阅,pubsub-js

一般兄弟传值时,使用 $EventBus, 事件总线的方式。本处使用发布订阅模式,效果等同于时间总线和父子、子父传值。

=安装=

npm i pubsub-js

===使用:===在需要 抛出事件 的页面中,

<template>
  <button @click="eventClick">EventBus的子组件 One</button>
</template>

<script>
import {
    publish, publishSync } from "pubsub-js";
export default {
   
  methods: {
   
    eventClick() {
   
      publishSync
;