Currently, I am utilizing a Laravel Nova custom tool that leverages vue js for unique functionalities.
Inside the component, there exists a tool.vue file which manages all operations. However, I am interested in having different templates (vue files) available to be rendered when required.
Specifically, my primary tool.vue is dedicated to a search with dropdowns that I successfully implemented. Yet, I intend to display the results list from another vue file after clicking on a button. This additional vue file would likely contain a table or similar element to showcase the data.
The core question involves how to accomplish this task with vue js. Furthermore, how can I seamlessly transition between components and transmit parameters/data from the main vue file to the result page for activities like ajax requests?