I want to use Vuetify (v1.0.18) to render some static navigation using v-tabs. The routing is done on the server side, so I need a way to set the active tab
I solved this with this.$refs
Text for tab1 Text for tab2 Text for tab3
// Inside a method someButton() { this.$refs.tab2.click() }