Fe-interview: [vue] vue组件之间的通信都有哪些?

Created on 11 Jun 2019  ·  3Comments  ·  Source: haizlin/fe-interview

[vue] vue组件之间的通信都有哪些?

vue

Most helpful comment

  • 父子Coms: 1/2/3 ..
  • 兄弟Coms: 4/5
  • 跨级Coms: 4/5/6/7
  • props
  • $emit/$on
  • ( $parents/$children ) / $refs
  • Vuex
  • Bus
  • ( provide/inject )
  • ( $attrs/$listeners )

All 3 comments

  • 父子Coms: 1/2/3 ..
  • 兄弟Coms: 4/5
  • 跨级Coms: 4/5/6/7
  • props
  • $emit/$on
  • ( $parents/$children ) / $refs
  • Vuex
  • Bus
  • ( provide/inject )
  • ( $attrs/$listeners )
  1. props
  2. emit
  3. ref
  4. vuex
  5. bus

1.父传子 props
2.子传父 $emit
3.Vuex 状态管理器
4.bus

Was this page helpful?
0 / 5 - 0 ratings