Course lesson
Since we are preventing a page refresh on form submit, we don't see that our data is updated in the UI until we manually refresh the page.
Since we are preventing a page refresh on form submit, we don't see that our data is updated in the UI until we manually refresh the page.
We can display the correct data without a refresh by using the refetch method from the composable useQuery. In this lesson, we will emit an updated event that triggers a handleRefresh method, inside of which is a call to refetch.
Course lesson
Since we are preventing a page refresh on form submit, we don't see that our data is updated in the UI until we manually refresh the page.