Moving focus between fields in input-list

I have a question, I created a input list form (in the Vue version):

<f7-list>
  <f7-list-input
    required
    :error-message="errors.firstname"
    :error-message-force="!!errors.firstname"
    class="mb-4"
    type="text"
    placeholder="Firstname*"
    :value="firstname"
    @input="firstname = $event.target.value"
    v-if="!editMode"
  ></f7-list-input>

  <f7-list-input
    required
    :error-message="errors.lastname"
    :error-message-force="!!errors.lastname"
    class="mb-4"
    type="text"
    placeholder="Lastname*"
    :value="lastname"
    @input="lastname = $event.target.value"
    v-if="!editMode"
  ></f7-list-input>
 </f7-list>

And I was expecting that the user would be able to move the focus on the next field by pressing the “return” key on his iOS keyboard, but this not seem to be the case.

Is there a “standard” way or do I need to handle manually?