Add account page

This commit is contained in:
Kevin Thomas
2021-11-27 23:42:00 -08:00
parent fc29667c96
commit fc79362510
11 changed files with 247 additions and 25 deletions

View File

@@ -393,6 +393,16 @@ export default {
this.$vuetify.theme.dark = response.data.user.darkMode
}
})
},
resetProfileForm () {
if (this.$refs.profileForm) {
this.$refs.profileForm.reset()
}
},
resetUploadSampleForm () {
if (this.$refs.uploadSampleForm) {
this.$refs.uploadSampleForm.reset()
}
}
}
}