非空
6 years ago
committed by
花裤衩
6 changed files with 37 additions and 10 deletions
@ -0,0 +1,13 @@ |
|||||||
|
import defaultSettings from '@/settings' |
||||||
|
import i18n from '@/lang' |
||||||
|
|
||||||
|
const title = defaultSettings.title || 'Vue Element Admin' |
||||||
|
|
||||||
|
export default function getPageTitle(key) { |
||||||
|
const hasKey = i18n.te(`route.${key}`) |
||||||
|
if (hasKey) { |
||||||
|
const pageName = i18n.t(`route.${key}`) |
||||||
|
return `${pageName} - ${title}` |
||||||
|
} |
||||||
|
return `${title}` |
||||||
|
} |
Loading…
Reference in new issue