Looking to suggest a username based on the user's first and last name. The concept is that after the user fills out the first name and last name fields, the value in the username field will be a combination of their first and last names.
firstName = Bobby
lastName = Brown
username = BobbyBrown
<v-text-field
v-model="firstName"
label="First Name"
></v-text-field>
<v-text-field
v-model="lastName"
label="Last Name"
></v-text-field>
<v-text-field
v-model="username"
label="Username"
></v-text-field>
<script>
export default ({
data() {
return {
firstName: '',
lastName: '',
username: '',
}
},
})
</script>