Skip to content

Instantly share code, notes, and snippets.

@jaydson
Created March 22, 2021 14:56
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 jaydson/c2f2a87064f58159775502bb1e927fa0 to your computer and use it in GitHub Desktop.
Save jaydson/c2f2a87064f58159775502bb1e927fa0 to your computer and use it in GitHub Desktop.
<!-- CustomInput.vue -->
<template>
...
<input type="text" :name="name" :value="value" @input="onInput" />
...
</template>
<script>
...
methods: {
onInput(event) {
this.$emit('input', event.target.value);
}
}
...
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment