mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
19 lines
355 B
Vue
19 lines
355 B
Vue
<template>
|
|
<request @handleSubmitted="handlePasswordResetRequested" />
|
|
</template>
|
|
|
|
<script>
|
|
import Request from '~/components/PasswordReset/Request'
|
|
|
|
export default {
|
|
components: {
|
|
Request,
|
|
},
|
|
methods: {
|
|
handlePasswordResetRequested({ email }) {
|
|
this.$router.push({ path: 'verify-nonce', query: { email } })
|
|
},
|
|
},
|
|
}
|
|
</script>
|