2019-06-18 23:49:38 +02:00

21 lines
382 B
Vue

<template>
<verify-code @passwordResetResponse="handlePasswordResetResponse" />
</template>
<script>
import VerifyCode from '~/components/PasswordReset/VerifyCode'
export default {
components: {
VerifyCode,
},
methods: {
handlePasswordResetResponse(response) {
if (response === 'success') {
this.$router.push('login')
}
},
},
}
</script>