首页 > 其他 > 详细

首页导航栏样式 案例

时间:2021-07-19 00:31:30      阅读:27      评论:0      收藏:0      [点我收藏+]

NavBar.vue

<template>
  <div class="nav-bar">
    <div class="left">
      <slot name="left"></slot>
    </div>
    <div class="mid">
      <slot name="mid"></slot>
    </div>
    <div class="right">
      <slot name="right"></slot>
    </div>
  </div>
</template>

<script>
  export default {
    name: ‘NavBar‘,
    data() {
      return {
        msg: ‘hello NavBar!‘
      }
    }
  }
</script>

<style>
  .nav-bar {
    display: flex;
    height: 45px;
    /* div中的文字垂直居中 */
    line-height: 45px;
  }

  .left,
  .right {
    background-color: red;
    width: 60px;
  }

  .mid {
    background-color: yellow;
    flex: 1;
  }
</style>

技术分享图片

首页导航栏样式 案例

原文:https://www.cnblogs.com/zhangxuechao/p/15028078.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!