I'm unsure how to approach this problem. I have input and it needs to take a URL and the user can put in as many URLs as they want.
For example:
<input
type="text"
v-model="fields.urls"
class="form-control"
id="basic-url"
aria-describedby="basic-addon3">
I need to pass an array of URLs to the backend like this:
['firsturl', 'secondurl', ...]