摘要: 全局事件总线 介绍 一种组件间通信的方式,适用于任意组件间通信。 在使用全局事件总线之前需要一些知识准备 所有组件实例的原型对象的原型对象就是 Vue 的原型对象,即VueComponent.prototype.__proto__ Vue.prototype 所有组件对象都能访问 Vue 原型对象上 阅读全文
posted @ 2021-08-17 22:38 至安 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 绑定 父组件:App.vue 子组件:Student.vue 方式一: $emit <template> <div class="student"> <button @click="sendStudentlName">把学生名给App</button> </div> </template> <scr 阅读全文
posted @ 2021-08-17 17:06 至安 阅读(675) 评论(0) 推荐(0) 编辑