As we all know, this works in laravel...
<ul>
@foreach ($titles as $key => $title)
<li>
<a href="#">{{ $title }}</a>
<a href="#">{{ $links[$key] }}</a>
</li>
@endforeach
</ul>
...whereas its purpose above is to output a single link for each single title. My question is this; How will I be able to do that in Vue.js in Laravel? I'm new in vue and I'd really appreciate if you respect my question. Thank you.