I have data that I need to pass from one component1 to another component2.
I don't use vuex or router.
Components tree:
-Parent
--Component1
--Component2
From first component1 I make ajax request, retrieving info and pushing to data.
board: [1,2,3,4,5]
And I need access that retrieved data in component2
Can I do It without vuex or router ?
Thank you :)