vue是組件化開發(fā)框架泉唁,所以對于Vue應(yīng)用來說組件間的數(shù)據(jù)通信非常重要鹅龄。
通信方式總結(jié):
- props
$emit/$on
$children/$parent
$attrs/$listeners
- ref
$root
- eventbus
- vuex
根據(jù)組件之間的關(guān)系來討論組件通信
-
父子組件之間通信
- props
$emit/$on
$parent / $children
- ref
$attrs /$listeners
-
兄弟組件
- $parent
- $root
- $eventbus
- vuex
-
跨層級關(guān)系
- eventbus
- vuex
- provide/inject