峰峰执法平台简易案件程序板块 pad端
yang
2022-10-17 4107256a8d1fa9a2db0969122bfc760994b12421
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";
    export default {
        name: "showHome",
        components: {
            showIndexTitle
        },
    }
</script>
 
<style lang="scss" scoped>
  .showHome-wrap{
    width: 100%;
    height: 100%;
    background: url("../../assets/images/showIndex-bj.jpg") no-repeat center;
    background-size: 100% 100%;
  }
</style>