Files
crawlab/frontend/src/utils/i18n.js
Marvin Zhang 8361c04de9 added setup.py
2019-03-03 10:48:04 +08:00

13 lines
339 B
JavaScript

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