10 lines
331 B
JavaScript
10 lines
331 B
JavaScript
// translate router.meta.title, be used in breadcrumb sidebar tagsview
|
|
export function generateTitle(title) {
|
|
const hasKey = this.$te('route.' + title)
|
|
const translatedTitle = this.$t('route.' + title) // $t :this method from vue-i18n, inject in @/lang/index.js
|
|
|
|
if (hasKey) {
|
|
return translatedTitle
|
|
}
|
|
return title
|
|
}
|