I have successfully set up a page where I can dynamically add a div/row of inputs by clicking the link. This feature works smoothly and adds the same div below the current one with all the proper inputs.
Additionally, one of the inputs is designed as an autosuggest/autocomplete search box, which also functions perfectly. When I type in the input, it searches and returns relevant results. Clicking on a result replaces the text in that input as expected.
While these two main functionalities are working flawlessly, I am facing an issue. When I add one or more divs, the text entered in each input reflects the same content. In other words, if I type 'Test' into the third row's input, it will appear in every div/row's input.
Is there a way to resolve this so that each added div's input displays its own text while still being added to the same v-model array?