zhanghua
2022-10-31 feebf68645a0c91e07c7eadeb04ae970001f1fc1
src/views/layout/components/Main/index.vue
@@ -1,21 +1,21 @@
<template>
  <el-main>
    <NavBar />
    <!-- <NavBar /> -->
    <div class="content">
      <router-view></router-view>
      <!-- 底部区域 -->
      <MyFooter/>
      <!-- <MyFooter/> -->
    </div>
  </el-main>
</template>
<script>
import MyFooter from "../Footer"
// import MyFooter from "../Footer"
import NavBar from "../NavBar"
export default {
  name: "Main",
  components: {
    MyFooter,
    // MyFooter,
    NavBar
  }
};
@@ -25,7 +25,6 @@
  min-width: 1024px;
  padding: 0;
  .content {
    background-color: #f0f2f5;
    padding: 11px;
  }
}