vue-rx icon indicating copy to clipboard operation
vue-rx copied to clipboard

Can a non-child components be a observable

Open akolnati opened this issue 7 years ago • 1 comments

I have a usecase where a key input event within a component needs to be observed from a non child (sibling) component. Is this even possible without emitting event like vm.$emit

akolnati avatar Dec 22 '17 04:12 akolnati

Cross sibling communication is an uni-directional thing. Use vuex or create an observable stream from their common parent component

regou avatar Dec 22 '17 06:12 regou