loulijun2021
2022-12-29 b417ffcc48caff0f1e177b8445d22683cc9b08af
1
2
3
4
5
6
7
8
9
10
import defaultSettings from '@/settings'
 
const title = defaultSettings.title || '新凯迪智造云平台'
 
export default function getPageTitle(pageTitle) {
  if (pageTitle) {
    return `${pageTitle} - ${title}`
  }
  return `${title}`
}