“dzb”
2022-09-22 ab36c0c3dbaa95fa3f94268cfc8b8bb7aae22b80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
  <el-main>
    <!-- <NavBar /> -->
    <div class="content">
      <router-view></router-view>
      <!-- 底部区域 -->
      <!-- <MyFooter/> -->
    </div>
  </el-main>
</template>
 
<script>
import MyFooter from "../Footer"
import NavBar from "../NavBar"
export default {
  name: "Main",
  components: {
    MyFooter,
    NavBar
  }
};
</script>
<style lang="scss">
.el-main {
  min-width: 1024px;
  padding: 0;
  .content {
    padding: 11px;
  }
}
</style>