diff options
Diffstat (limited to 'UI source code/dns_mapping_ui-master/src/utils/i18n.js')
| -rw-r--r-- | UI source code/dns_mapping_ui-master/src/utils/i18n.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/UI source code/dns_mapping_ui-master/src/utils/i18n.js b/UI source code/dns_mapping_ui-master/src/utils/i18n.js new file mode 100644 index 0000000..c1aca41 --- /dev/null +++ b/UI source code/dns_mapping_ui-master/src/utils/i18n.js @@ -0,0 +1,22 @@ +// translate router.meta.title, be used in breadcrumb sidebar tagsview +// export function generateTitle(title) { +// console.log(this.$te, 222) +// // 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 +// } + +// export function generateTitle(title){ +// const hasKey = this.$te('route.' + title) +// if(hasKey){ +// const translatedTitle = this.$t('route.' + title) +// return translatedTitle +// } +// return title +// } |
