3-13 Vue 组件间通信有哪几种方式?


vue2:

  1. props
  2. $emit
  3. vuex
  4. $attrs 和 $listeners
  5. provide 和 inject
  6. parent 和 children
  7. $refs
  8. $root
  9. .sync
  10. slot
  11. 全局事件总线

vue3:

  1. props
  2. $emit
  3. vuex
  4. pinia
  5. provide 和 inject
  6. ...

相关