In my Laravel 8 and Vue 3 application, I have a Student Component with a datalist that lists all the students. My goal is to populate the input fields with the specific student information when clicking on a student.
I attempted to use Vue select, which is designed for Vue 2 and does not work with Vue 3. Additionally, I tried Vue-next-select, which is meant for Vue 3 compatibility. However, after installing it and importing it in my App.js file, I encountered an error stating "Module is not installed," and I am unsure why this error occurred.
Therefore, I'm seeking a solution to make Vue-next-select work or any alternative approach to achieve the desired functionality.
Below is a snippet of my code:
If more code is required for investigation, please let me know. Any guidance, advice, or tips would be greatly appreciated. Thank you for your assistance.