#include<iostream>#include<vector>#include<string>#include<cstring>#include<cstdlib>#include<unistd.h>#include<sys/stat.h>#include<sys/wait.h>//把5个子进程要管理起来,要先描述再组织const int processnum=5;//先
一、作用:任意组件间通信 二、实现 1、创建全局事件总线 new Vue({render: h => h(App),beforeCreate(){//创建全局事件总线Vue.prototype.$bus=this}}).$mount('#app') 2、学生组件 触发事件 <template><div class="studentInfo"><h2>学生姓名: {{ name }}<