组件 顶部常见布局类型
<template>
<div>
<el-header>
<el-row>
<el-col :span="12">
<div class="grid-content bg-purple header-left-content">
<img class="header-left-img" src="../assets/image/banner-test-1.jpg" />
<ul class="header-left-menu-ulbox">
<li v-for="(item,index) in headermenu" :key="index">
<router-link :to="item.url">{{item.name}}</router-link>
</li>
</ul>
<i class="el-icon-edit header-top-icon-edit"></i>
</div>
</el-col>
<el-col :span="12">
<div class="grid-content bg-purple-light header-right-content">
<i :class="[itemicon.icon]" v-for="(itemicon,indexicon) in icondata" :key="indexicon"></i>
</div>
</el-col>
</el-row>
</el-header>
</div>
</template>
<script>
export default {
data() {
return {
//顶部菜单数据 开始
headermenu: [
{ name: "基础数据平台", url: "/basic" },
{ name: "设备管理系统", url: "/equipment" },
{ name: "授权系统", url: "/authorization" },
{ name: "资源平台", url: "/resource" },
{ name: "同步课堂", url: "/sync" }
],
icondata: [
{ icon: "el-icon-edit" },
{ icon: "el-icon-share" },
{ icon: "el-icon-delete" },
{ icon: "el-icon-search" }
]
};
}
};
</script>
<style scoped>
.el-header {
background-color: #b3c0d1;
color: #333;
text-align: center;
height: 60px;
line-height: 60px;
padding: 0;
}
.header-left-content {
text-align: left;
display: flex;
}
.header-right-content {
text-align: right;
}
/* 控制右边的图标 */
.header-right-content > i {
width: 20px;
}
.header-left-img {
width: 90px;
height: 60px;
}
.header-left-menu-ulbox {
display: flex;
}
.header-left-menu-ulbox > li {
width: 90px;
text-align: center;
}
.header-top-icon-edit {
display: inline-block;
width: 90px;
height: 60px;
line-height: 60px;
}
</style>
<el-header> 是用的容器布局属性中的数据
遇见问题,这是你成长的机会,如果你能够解决,这就是收获。
作者:晚来南风晚相识
出处:https://www.cnblogs.com/IwishIcould/
本文版权归作者所有,欢迎转载,未经作者同意须保留此段声明,在文章页面明显位置给出原文连接
如果文中有什么错误,欢迎指出。以免更多的人被误导。
出处:https://www.cnblogs.com/IwishIcould/
想问问题,打赏了卑微的博主,求求你备注一下的扣扣或者微信;这样我好联系你;(っ•̀ω•́)っ✎⁾⁾!
如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,或者关注博主,在此感谢!
万水千山总是情,打赏5毛买辣条行不行,所以如果你心情还比较高兴,也是可以扫码打赏博主(っ•̀ω•́)っ✎⁾⁾!
想问问题,打赏了卑微的博主,求求你备注一下的扣扣或者微信;这样我好联系你;(っ•̀ω•́)っ✎⁾⁾!
支付宝
微信
如果文中有什么错误,欢迎指出。以免更多的人被误导。