css导航头部logo,vue element Admin - 修改浏览器标签名 + 添加tagView标签 +固定导航头部 + 添加侧边栏Logo...

1 、修改浏览器标签名称:

修改浏览器标签名称在文件:\src\settings.js

format,png

image.png

2 、修改固定头部Header和侧边栏 Logo:

format,png

image.png

1)侧边栏文件在:\src\layout\components\Sidebar\index.vue, Sidebar组件中

format,png

image.png

2)修改侧边栏Log和标题在文件:src\layout\components\Sidebar\Logo.vue

format,png

image.png

3) 控制showLogo字段在文件 \src\settings.js中 【需要修改这个文件】

fixedHeader:true ==>为true则固定头部,为false则滚动,

sidebarLogo: true ==>为true则显示侧边栏logo,为false则隐藏

module.exports = {

title: 'Vue Admin Template',

/**

* @type {boolean} true | false

* @description Whether fix the header

*/

fixedHeader: true,

/**

* @type {boolean} true | false

* @description Whether show the logo in sidebar

*/

sidebarLogo: true

}

注意:固定头部除了需要改变fixedHeader:true 属性值外,还需要在\src\layout\components\AppMain.vue添加样式,内边距增高

format,png

image.png

样式代码

.app-main {

/*50 = navbar */

min-height: calc(100vh - 50px);

width: 100%;

position: relative;

overflow: hidden;

}

.fixed-header+.app-main {

padding-top: 50px;

}

.hasTagsView {

.app-main {

/* 84 = navbar + tags-view = 50 + 34 */

min-height: calc(100vh - 84px);

}

.fixed-header+.app-main {

padding-top: 84px;

}

}

// fix css style bug in open el-dialog

.el-popup-parent--hidden {

.fixed-header {

padding-right: 15px;

}

}

3 、添加标签导航栏

在setting.js中设置变量tagsView为true,控制tagView是否显示

文件路径:src\settings.js

/**

* @type {boolean} true | false

* @description Whether show the logo in sidebar

*/

tagsView: true,

通过store - setting.js文件控制变量 tagsView

文件路径:src\store\modules\settings.js

添加引入变量

const { showSettings, tagsView, fixedHeader, sidebarLogo } = defaultSettings

const state = {

showSettings: showSettings,

fixedHeader: fixedHeader, // 控制是否固定导航

sidebarLogo: sidebarLogo, // 控制头部logo是否显示

tagsView: tagsView // 控制tagsView导航标签栏是否显示

}

3)此步骤可忽略

在store-index.js中暴露settings

文件路径:src\store\index.js

import Vue from 'vue'

import Vuex from 'vuex'

import settings from './modules/settings'

Vue.use(Vuex)

const store = new Vuex.Store({

modules: {

settings

},

getters

})

export default store

4)拷贝组件tagViews

至文件路径:src\layout\components\TagsView\index.vue

format,png

image.png

若是无权限路由则修改文件:src\layout\components\TagsView\index.vue里代码,因为admin版本是权限路由,获取路由方式不一样,代码return this.$router.options.routes

format,png

image.png

5)添加拷贝状态管理文件 store

format,png

image.png

5.1)拷贝此文件

\src\store\modules\tagsView.js

5.2)在getter.js中添加抛出字段

文件路径:src\store\getters.js

visitedViews: state => state.tagsView.visitedViews,

cachedViews: state => state.tagsView.cachedViews,

format,png

image.png

5.3) 引入tagView文件

文件路径:\src\store\index.js

format,png

image.png

import Vue from 'vue'

import Vuex from 'vuex'

import tagsView from './modules/tagsView'

Vue.use(Vuex)

const store = new Vuex.Store({

modules: {

tagsView

},

getters

})

export default store

以上为引入,下面开始使用

6) 在layout - component - index.js文件中添加 引入tagViews组件

文件路径:src\layout\components\index.js

export { default as TagsView } from './TagsView/index.vue'

7)添加keep-alive缓存路由

文件路径:@/layout/components/AppMain.vue

修改js文件

computed: {

cachedViews() {

return this.$store.state.tagsView.cachedViews

},

key() {

console.log(this.$route.path)

return this.$route.path

}

}

8) 修改index.js文件

文件路径:\src\layout\components\index.js

format,png

image.png

export { default as TagsView } from './TagsView/index.vue'

9) 修改layout - index.vue文件(控制头部是否固定、tagsview导航标签

文件路径:src\layout\index.vue

format,png

image.png

import { Navbar, Sidebar, AppMain, TagsView } from './components'

import ResizeMixin from './mixin/ResizeHandler'

export default {

name: 'Layout',

components: {

Navbar,

Sidebar,

AppMain,

TagsView

},

mixins: [ResizeMixin],

computed: {

needTagsView() {

console.log(this.$store.state.settings.tagsView)

return this.$store.state.settings.tagsView

// return true

},

sidebar() {

return this.$store.state.app.sidebar

},

device() {

return this.$store.state.app.device

},

fixedHeader() {

return this.$store.state.settings.fixedHeader

},

classObj() {

return {

hideSidebar: !this.sidebar.opened,

openSidebar: this.sidebar.opened,

withoutAnimation: this.sidebar.withoutAnimation,

mobile: this.device === 'mobile'

}

}

},

修改原有的dashboard为home(路由里的名称及跳转路径)

文件路径:src\router\index.js

注意:当在声明路由是 添加了 Affix 属性,则当前tag会被固定在 tags-view中(不可被删除)。

添加:affix: true

format,png

image.png

10)修改文件dashboard为home

文件路径:tests\unit\components\Breadcrumb.spec.js

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值