Passing Data Between Components
What is the best way to pass some information between components?
In my parent component, within the actions column, I have an edit button that redirects to edit/:id when clicked. However, I need to pass some information to the rendered component. I thought about using the meta inside useGo, but that would be incorrect, right? Since these data are not meant to compose the URL but rather to be used within my component.
In my parent component, within the actions column, I have an edit button that redirects to edit/:id when clicked. However, I need to pass some information to the rendered component. I thought about using the meta inside useGo, but that would be incorrect, right? Since these data are not meant to compose the URL but rather to be used within my component.
