adding latest
This commit is contained in:
@@ -46,15 +46,15 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
submit() {
|
||||
async submit() {
|
||||
if (this.$refs.form.validate()) {
|
||||
console.log(`CONFIRM username: ${this.username}, code: ${this.code}`);
|
||||
confirmSignUp(this.username, this.code)
|
||||
await confirmSignUp(this.username, this.code);
|
||||
}
|
||||
},
|
||||
resend() {
|
||||
console.log(`RESEND username: ${this.username}`);
|
||||
resendSignUp(this.username)
|
||||
resendSignUp(this.username);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user