[SOLVED] Messagebar - add keypress (Vue)

Hi Guys!

I want to send message from message bar by Enter button (some of my users are using laptops)
How I can make it?

I tried to add @keypress.enter=“send” to <f7-messagebar - it’s not working :frowning:

<f7-messagebar
            placeholder="Message"
            @keypress.enter="send"
            @submit="send"
    >  

Thanks!!!

@keypress.enter.native
1 Like

Thank you, so much! It helped!