Event @input does not work correctly

On an existing app and on a fresh f7 app, any input with @input event does not work as usual. I updated from v5.7.7 to 5.7.9 and 5.7.10 but I can’t replicate this on a jsfiddle.

The weird part is if an input has an attribute @input=“updateUsername”, when I open the form it is filled with the value “@input=updateUsername”. See the screenshot attached. Is anyone experiencing this ?

<input type="text" value="" @input=“updateUsername”>

1 Like

I found another solution, put the value prop to the end will be ok!

<input type="text" name="username" placeholder="Your username" @input="updateUsername" value="{{username}}">

It seems that all the words after value will be displayed! It’s a bug?

1 Like

Thanks, but prop will work for Vue, this is not Vue but the core framework7. The correct solution is above.