Layout.vue 1.4 KB
<script setup>
import Head from '@/components/head.vue'
</script>

<template>
  <div class="counter">
    <!-- 封住头部组件 -->
    <Head></Head>
    <div class="banner">
      <!-- 左边部分 -->
      <div class="left">
        <div class="pic">
          <img src="@/static/Avatar.png" alt="" />
        </div>
        <div class="name">XXX</div>
        <div class="cont">
          <div class="li" v-for="item in 8">首页</div>
        </div>
        <div class="one"></div>
      </div>
      <!-- 右边二级路由 -->
      <div class="right">
        <!-- 这里是二级路由的出口 -->
        <router-view></router-view>
      </div>
    </div>
  </div>
</template>
<style lang="scss">
.counter {
  .banner {
display: flex;
  
  .left {
    position: relative;
    margin: 40px 40px 0;
    width: 15%;
    background-color: #6170c3;
    color: #fff;
    border-radius: 18px;
    .pic {
      margin: 0 auto;
      padding-top: 50px;
      width: 75px;
      height: 75px;
      img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
      }
    }
    .name {
      margin-top: 10px;
      text-align: center;
    }
    .cont {
      margin-top: 20px;
      .li {
        line-height: 50px;
        width: 100%;
        height: 50px;
        padding-left: 30px;
        box-sizing: border-box;
      }
    }
    .one {
      background-color: pink;
    }
  }
}
}
</style>