deepchart后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
235 B

2 months ago
  1. import defaultSettings from '@/settings'
  2. const title = defaultSettings.title || 'Vue Admin Template'
  3. export default function getPageTitle(pageTitle) {
  4. if (pageTitle) {
  5. return `${pageTitle} - ${title}`
  6. }
  7. return `${title}`
  8. }