Skip to content

Instantly share code, notes, and snippets.

@kuroski
Created September 7, 2018 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuroski/9f46e359e65bb8a4d49f2c63dc67de24 to your computer and use it in GitHub Desktop.
Save kuroski/9f46e359e65bb8a4d49f2c63dc67de24 to your computer and use it in GitHub Desktop.
<script>
export default {
name: 'UserSearchForm',
data() {
return {
username: ''
}
}
}
</script>
<template>
<form @submit.prevent="$emit('submitted', username)">
<input type="text" v-model="username" />
<button type="submit">Enviar</button>
</form>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment