Vue js - pass data within two components in the same level
问题 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 :) 回答1: You could emit an event to parent from component1 having as parameters the updated board and in the parent one receive that and pass it