I'm struggling with how to handle this issue. The task involves taking input which should be a URL, and the user should be able to enter multiple URLs.
For instance:
<input
type="text"
v-model="fields.urls"
class="form-control"
id="basic-url"
aria-describedby="basic-addon3">
The goal is to send an array
of URLs to the backend in the following format:
['firsturl', 'secondurl', ...]