22 lines
499 B
Vue
22 lines
499 B
Vue
<template>
|
|
<pn-page-card>
|
|
<template #title>
|
|
{{$t('account__change_password')}}
|
|
</template>
|
|
<pn-scroll-list>
|
|
<account-helper :type :email/>
|
|
</pn-scroll-list>
|
|
</pn-page-card>
|
|
</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>
|