Trying to pass data from one page to another in Vue.js has become quite a challenge for beginners. Here is the router configuration that I am using: https://i.sstatic.net/cBDzI.png
Currently, I have a form rendering on the "/" page, which makes an API request: https://i.sstatic.net/JdIzk.png
My goal is to pass this data to another route page with a different component: https://i.sstatic.net/IiZEG.png
Is it really difficult to achieve this in Vue? Today, I faced some major challenges trying to retrieve data from the API, save it, and then sending it to another component. Can someone guide me on how to tackle this issue?