q-tab used to open drawer
-
can a q-tab used to open drawer like
<q-tab @click="$refs.drawer.open()" class="hide-on-drawer-visible">More</q-tab>
? Does not seem to work. -
Tab is a Vue component, so you need the
.native
modifier on@click
like this:@click.native
. Please read more about Vue 2.0 event handling. -
@rstoenescu Sorry, dumb oversight. Thanks!