zhangxiaoxu123
2023-07-06 b3aaeffd19122233004b65a9d715baebfb278a72
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>