Vuetify: 1.3.11
Vue: 2.5.17
Browsers: Chrome 70.0.3498.0, Safari, Mozilla Firefox
OS: Mac OS 10.13.4
The exact point of failure is having v-tabs and a v-tab-item and then adding a to attribute to one of the v-tabs
<v-tabs>
<v-tab to="/test">tab1</v-tab>
<v-tab>tab2</v-tab>
<v-tab>tab3</v-tab>
<v-tab-item></v-tab-item>
</v-tabs>
The browser should not crash. I'd like to be able to use both a to and the v-tab-item so that users can visit tabs via direct link and use the tabs as usual
The tab freezes and becomes unresponsive.
https://codepen.io/anon/pen/QJJLNg
There may be a better way of doing my use case, but the fact it's crashing the browser isn't good.
Workaround is to explicitly bind the value of v-tab-item: https://codepen.io/johnjleider/pen/VVVZVe
Fixed in f22d754
Most helpful comment
Workaround is to explicitly bind the value of
v-tab-item: https://codepen.io/johnjleider/pen/VVVZVe