before delete 3software
This commit is contained in:
@@ -1,17 +1,21 @@
|
||||
<template>
|
||||
<pn-page-card>
|
||||
<template #title>
|
||||
<div class="col-grow">
|
||||
{{$t('account__change_password')}}
|
||||
</div>
|
||||
{{$t('account__change_password')}}
|
||||
</template>
|
||||
<pn-scroll-list>
|
||||
<account-helper :type />
|
||||
<account-helper :type :email/>
|
||||
</pn-scroll-list>
|
||||
</pn-page-card>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import accountHelper from 'src/components/accountHelper.vue'
|
||||
const type = 'change'
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user