Created
March 22, 2021 12:50
-
-
Save jaydson/952d3e682abf54d7c128d7545a167181 to your computer and use it in GitHub Desktop.
This file contains 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 characters
<template> | |
<label> | |
Username | |
<input type="text" name="username" v-model="username"> | |
</label> | |
</template> | |
<script> | |
export default { | |
name: 'UsernameInput', | |
data() { | |
return { | |
username: 'Initial value', | |
}; | |
}, | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment