This commit is contained in:
2025-04-14 10:27:58 +03:00
parent f977d6b3d4
commit 7e798a7a83
55 changed files with 5625 additions and 353 deletions

View File

@@ -5,11 +5,18 @@
{{$t('forgot_password__password_recovery')}}
</div>
</template>
<account-helper :type />
<pn-scroll-list>
<account-helper :type :email="email"/>
</pn-scroll-list>
</pn-page-card>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { useRoute } from 'vue-router' // Добавляем импорт
import accountHelper from 'components/admin/accountHelper.vue'
const route = useRoute()
const type = 'forgot'
const email = ref(route.query.email as string)
</script>