Using version: 2.0.10
Whenever I press the “enter” key in this text input, the app reloads.
The code below is the culprit. Whether or not I have the v-on:keyup does not affect the behavior at all. It always reloads.
<f7-input
type="text"
placeholder="Add this"
:value="supplyToAdd"
v-on:input="supplyToAdd = $event.target.value"
v-on:keyup.enter="addToSuppliesList"></f7-input>