The button<v-btn v-on:click.native="sendGroupMsg">Send Message</v-btn>
works as expected firing the sendGroupMsg
from my methods:{}
but The button does not work on mobile devices. The click just does not do anything.
<div>
<v-btn v-on:click.native="sendGroupMsg">Send Message</v-btn>
<div>
in my methods:{}
methods: {
sendGroupMsg() {}
}