<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>
|
@import "../../../assets/css/base";
|
.showHome-wrap{
|
width: 10rem /* 2560/256 */;
|
height: 6.25rem /* 1600/256 */;
|
background: url("../../../assets/images/jiashicang-bj.jpg") no-repeat center;
|
background-size: 100% 100%;
|
}
|
|
</style>
|