Created
March 22, 2021 15:03
-
-
Save jaydson/ac2e010a291f32eb454a49e8b83ad71b to your computer and use it in GitHub Desktop.
Revisions
-
Jaydson Gomes created this gist
Mar 22, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ <!-- CustomInput.vue --> <template> ... <input type="text" :name="name" v-model="model" /> ... </template> <script> ... computed: { ... model: { get() { return this.value; }, set(value) { this.$emit('input', value); }, }, }, ... </script>