mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-10 21:00:01 +08:00
5 lines
207 B
JavaScript
5 lines
207 B
JavaScript
// translate router.meta.title, be used in breadcrumb sidebar tagsview
|
|
export function generateTitle(title) {
|
|
return this.$t('route.' + title) // $t :this method from vue-i18n, inject in @/lang/index.js
|
|
}
|