Skip to content
LBJhui-blog
Main Navigation
首页
前端基础
HTML
CSS
JavaScript
Git
框架&库
Vue
前端工程化
浏览器和网络
微信环境
面试题
Leetcode算法
业务场景
考研
数学
408
更多
python
网址收藏
Appearance
Menu
Return to top
On this page
组件通信
父子组件通信 父->子 props,子->父
、
o
n
、
emit 获取父子组件实例
、
p
a
r
e
n
t
、
children Ref 获取实例的方式调用组件的属性或者方法 Provide、inject 官方不推荐使用,但是写组件库时很常用
兄弟组件通信 Event Bus 实现跨组件通信 Vue.prototype.$bus = new Vue Vuex
跨级组件通信 Vuex
、
a
t
t
r
s
、
listeners Provide、inject