dezhou-screen/src/views/MainContent.vue

33 lines
588 B
Vue
Raw Normal View History

2023-10-27 16:17:35 +08:00
<template>
<div class="main-content">
<AHeader />
<Main />
2023-10-27 17:39:36 +08:00
<BottomBar />
2023-10-27 16:17:35 +08:00
</div>
</template>
<script>
import AHeader from "../components/layout/Header.vue";
import Main from "../components/layout/Main.vue";
2023-10-27 17:39:36 +08:00
import BottomBar from "../components/layout/BottomBar.vue";
2023-10-27 16:17:35 +08:00
export default {
name: 'MainContent',
2023-10-27 17:39:36 +08:00
components: { AHeader, Main, BottomBar },
2023-10-27 16:17:35 +08:00
data() {
return {
}
}
}
</script>
<style scoped>
.main-content {
width: 1px;
flex: 1;
background: #f001;
2023-10-27 17:39:36 +08:00
display: flex;
flex-direction: column;
2023-10-27 16:17:35 +08:00
}
</style>