[Vuejs]-Setting focus on v-btn in a v-dialog that opens by default

0👍

For Vuetify 2 you have to use the following (I updated my codepen)

 setTimeout(() => {
        this.$refs.cancelTestDialog.$el.focus()
  })

Leave a comment