Answer the question
In order to leave comments, you need to log in
A non-Vue form made up of multiple Vue components. How to do it right?
There is a regular form that is not a vue component. It displays several vue components in a loop:
<form action="someUrl" method="post">
@foreach($questions as $question)
{{ $question->title }}
<answer :id="{{ $question->id }}"></answer>
<file-uploader :id="{{ $question->id }}"></file-uploader>
@endforeach
<button type="submit">Send</button>
</form>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question