dashboard
repositories
filestore
activity
search
login
main
/
XjEnterpriseInformation.Web
原gitlab中XjEnterpriseInformation.Web
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
remove and commit
郑永安
2023-06-19
6ae336af4670a425ae8892aacda560ec2147d8a7
[XjEnterpriseInformation.Web.git]
/
src
/
utils
/
get-page-title.js
1
2
3
4
5
6
7
8
9
10
import defaultSettings from '@/settings'
const title = defaultSettings.title || 'Vue Admin Template'
export default function getPageTitle(pageTitle) {
if (pageTitle) {
return `${pageTitle} - ${title}`
}
return `${title}`
}