|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<app-view>
|
|
<app-view>
|
|
|
<template #header>
|
|
<template #header>
|
|
|
- <app-navbar :title="title" />
|
|
|
|
|
|
|
+ <app-navbar :title="$t('mine.profile.title')" />
|
|
|
</template>
|
|
</template>
|
|
|
<CellGroup>
|
|
<CellGroup>
|
|
|
<Cell :title="$t('mine.profile.invoiceinfo')" :to="{ name: 'mine-invoice' }" is-link />
|
|
<Cell :title="$t('mine.profile.invoiceinfo')" :to="{ name: 'mine-invoice' }" is-link />
|
|
@@ -21,7 +21,7 @@ import { onActivated } from 'vue'
|
|
|
defineProps({
|
|
defineProps({
|
|
|
title: {
|
|
title: {
|
|
|
type: String,
|
|
type: String,
|
|
|
- default: i18n.global.t('mine.profile.title'),
|
|
|
|
|
|
|
+ default: '',
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
|
|
|