在父组件中通过provide来传递
provide('data':要传递的值)
在下面的子组件或孙组件中通过inject接收
let ecorData: any = inject("data");
注意:这样传递值在通过 inject 接收的页面通过watch监听是监听不到的