819527061@qq.com
2023-07-25 f0b2b04b1b43d4891c1808ad060b9959f9a1209c
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
<template>
  <div class="showHome-wrap">
    <showIndexTitle></showIndexTitle>
    <router-view></router-view>
  </div>
</template>
 
<script>
  import showIndexTitle from "../components/showIndexTitle/showIndexTitle";
    export default {
        name: "showHome",
        components: {
            showIndexTitle
        }
    }
</script>
 
<style lang="scss" scoped>
.showHome-wrap{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
</style>