Skip to content

Instantly share code, notes, and snippets.

@aptiko
Created May 31, 2021 12:54
Show Gist options
  • Save aptiko/d6a4699714c3d70991294d9ff92d642b to your computer and use it in GitHub Desktop.
Save aptiko/d6a4699714c3d70991294d9ff92d642b to your computer and use it in GitHub Desktop.
Component needing testing of an event
<template>
<div>
<b-modal @shown="focusUsername">
<b-form-input
ref="username"
v-model="username"
:placeholder="Username"
></b-form-input>
</b-modal>
</div>
</template>
<script>
export default {
data: () => ({
username: '',
}),
methods: {
focusUsername() {
this.$refs.username.$el.focus()
},
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment