24 lines
531 B
Vue
24 lines
531 B
Vue
<template>
|
|
<section class="_contaioner">
|
|
<custom-scroll-title class="header_titles" @change-title="handleChangeTitle" />
|
|
<section class="_content">
|
|
<router-view />
|
|
</section>
|
|
</section>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
._contaioner {
|
|
box-sizing: border-box;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: url('../assets/images/basic/containerBG.png') no-repeat center;
|
|
background-size: 100% 100%;
|
|
.header_titles {
|
|
height: 60px;
|
|
}
|
|
._content {
|
|
height: calc(100vh - 60px);
|
|
}
|
|
}
|
|
</style>
|