Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
raimund-schluessler committed Aug 16, 2022
1 parent be3f1f7 commit 9c9545e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/ActionButton/ActionButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ This component is made to be used inside of the [Actions](#Actions) component sl
showMessage(msg) {
alert(msg)
},
async focusInput() {
await this.$nextTick()
this.$refs.input.focus()
focusInput() {
this.$nextTick(() => this.$refs.input.focus())
},
},
}
Expand Down

0 comments on commit 9c9545e

Please sign in to comment.