29 lines
492 B
Vue
29 lines
492 B
Vue
<template>
|
|
<div class="basic-layout">
|
|
<Header />
|
|
<Main />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="layout">
|
|
import Header from './component/Header';
|
|
import Main from './component/Main';
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.basic-layout {
|
|
height: 100%;
|
|
width: 100%;
|
|
min-width: 1200px;
|
|
|
|
&-container {
|
|
position: relative;
|
|
@include flex-column();
|
|
height: 100%;
|
|
margin-left: 210px;
|
|
box-sizing: border-box;
|
|
transition: margin-left 0.28s;
|
|
}
|
|
}
|
|
</style>
|