mirror of
https://github.com/Paris-est-Ludique/ForceOrange.git
synced 2025-06-08 01:04:20 +02:00
13 lines
266 B
Vue
13 lines
266 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
name: 'ProfileAuthResetPassword',
|
|
})
|
|
|
|
const router = useRouter()
|
|
</script>
|
|
|
|
<template>
|
|
<UCard class="container mx-auto max-w-screen-md">
|
|
<PasswordUpdateForm @success="() => router.push('/')" />
|
|
</UCard>
|
|
</template> |