Files
tgCrewAdmin/src/pages/AccountChangePasswordPage.vue
2026-01-28 22:37:27 +03:00

20 lines
462 B
Vue

<template>
<pn-page-template>
<template #title>
{{$t('account__change_password')}}
</template>
<account-helper :type :email/>
</pn-page-template>
</template>
<script setup lang="ts">
import accountHelper from 'components/accountHelper.vue'
import { useAuthStore } from 'stores/auth'
const authStore= useAuthStore()
const type = 'changePwd'
const email = authStore.customer?.email ? authStore.customer?.email : '???'
</script>