소스 검색

浏览器页签标题

master
张泽亮 2 주 전
부모
커밋
c71eb56733
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +1
    -1
      .env.development
  2. +1
    -1
      .env.production
  3. +1
    -1
      .env.staging
  4. +1
    -1
      src/layout/components/Sidebar/Logo.vue

+ 1
- 1
.env.development 파일 보기

@@ -1,5 +1,5 @@
# 页面标题
VUE_APP_TITLE = 后台系统
VUE_APP_TITLE = 管理系统

# 开发环境配置
ENV = 'development'


+ 1
- 1
.env.production 파일 보기

@@ -1,5 +1,5 @@
# 页面标题
VUE_APP_TITLE = 后台系统
VUE_APP_TITLE = 管理系统

# 生产环境配置
ENV = 'production'


+ 1
- 1
.env.staging 파일 보기

@@ -1,5 +1,5 @@
# 页面标题
VUE_APP_TITLE = 后台系统
VUE_APP_TITLE = 管理系统

BABEL_ENV = production



+ 1
- 1
src/layout/components/Sidebar/Logo.vue 파일 보기

@@ -35,7 +35,7 @@ export default {
},
data() {
return {
title: this.$store.getters.browserName == '' ? '后台系统' : this.$store.getters.browserName,
title: this.$store.getters.browserName == '' ? '管理系统' : this.$store.getters.browserName,
logo: this.$store.getters.globalLogo == '' ? logoImg : this.$store.getters.globalLogo,
}
}


불러오는 중...
취소
저장