Visit codepen.io/anon/pen/mmrEGK and click on the button
Vuetify 0.11.0
Clicking on the button should focus the textfield
Only the focus decoration is applied to the textfield, but the actual input is not focused
codepen.io/anon/pen/mmrEGK
I have same issue in 0.12.2.
Small detail: the v-text-field is placed into v-dialog. And I call
showLoginDialog: function () {
this.$refs.loginTxt.focus();
this.loginDialog = true;
},
Just to follow up on that last comment and save some time for anyone else who shows up here trying to focus a v-text-field in a dialog, the solution is to wrap the focus() call in a nextTick() as described here: https://github.com/vuetifyjs/vuetify/issues/1587#issuecomment-326967711
@asoltys thanks.
Most helpful comment
Just to follow up on that last comment and save some time for anyone else who shows up here trying to focus a v-text-field in a dialog, the solution is to wrap the focus() call in a nextTick() as described here: https://github.com/vuetifyjs/vuetify/issues/1587#issuecomment-326967711