Skip to content

Instantly share code, notes, and snippets.

@jaydson
Created March 22, 2021 14:21
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/ad83658f39b2b1afb790e5d80eaae42e to your computer and use it in GitHub Desktop.
Save jaydson/ad83658f39b2b1afb790e5d80eaae42e to your computer and use it in GitHub Desktop.
<!-- App.vue -->
<template>
<custom-input :label="label" v-model="model" />
</template>
<script>
import CustomInput from './components/CustomInput.ue';
export default {
name: 'App',
components: { CustomInput },
data() {
return {
label: 'Username',
model: '',
};
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment