I have data from the results stored in a child component that needs to be passed to the main component.
The Main Component is the parent, so whenever I click the button, the results should be collected in the main app
<button @click="showFinalResult">Click me</button>
The data is currently in the Child component and I just need to display the results in JSON format in the Parent. The results are input results.
results: [],