10 lines
261 B
Vue
10 lines
261 B
Vue
<template >
|
|
<div style="display: flex;flex-direction: column;">
|
|
<Header></Header>
|
|
<MainSection></MainSection>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import Header from "@/Manager/Header.vue";
|
|
import MainSection from "@/Manager/MainSection.vue";
|
|
</script> |