mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
382 B
Vue
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>
|