Created
March 5, 2019 10:56
-
-
Save depsimon/0e91b761edc68236b7879218ab04626a to your computer and use it in GitHub Desktop.
Vuetify Profile Page
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> | |
<v-container fluid> | |
<v-layout column> | |
<v-card> | |
<v-card-text> | |
<v-flex class="mb-4"> | |
<v-avatar size="96" class="mr-4"> | |
<img :src="'/avatars/avatar_' + (form.avatar.toLowerCase()) + '.png'" alt="Avatar"> | |
</v-avatar> | |
<v-btn @click="openAvatarPicker">Change Avatar</v-btn> | |
</v-flex> | |
<v-text-field | |
v-model="form.firstName" | |
label="FirstName"></v-text-field> | |
<v-text-field | |
v-model="form.lastName" | |
label="Last Name"></v-text-field> | |
<v-text-field | |
v-model="form.contactEmail" | |
label="Email Address"></v-text-field> | |
</v-card-text> | |
<v-card-actions> | |
<v-btn color="primary" :loading="loading" @click.native="update"> | |
<v-icon left dark>check</v-icon> | |
Save Changes | |
</v-btn> | |
</v-card-actions> | |
</v-card> | |
</v-layout> | |
<avatar-picker | |
v-model="showAvatarPicker" | |
:current-avatar="form.avatar" | |
@selected="selectAvatar"></avatar-picker> | |
</v-container> | |
</template> | |
<script> | |
import AvatarPicker from '~/components/AvatarPicker' | |
export default { | |
pageTitle: 'My Profile', | |
components: { AvatarPicker }, | |
data () { | |
return { | |
loading: false, | |
form: { | |
firstName: 'John', | |
lastName: 'Doe', | |
contactEmail: '[email protected]', | |
avatar: 'MALE_CAUCASIAN_BLOND_BEARD' | |
}, | |
showAvatarPicker: false | |
} | |
}, | |
methods: { | |
openAvatarPicker () { | |
this.showAvatarPicker = true | |
}, | |
selectAvatar (avatar) { | |
this.form.avatar = avatar | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!