feat(projects): 布局调整

This commit is contained in:
Soybean
2021-08-26 18:49:20 +08:00
parent ea5917d225
commit eda87f041d
14 changed files with 40 additions and 119 deletions

View File

@ -1,8 +0,0 @@
<template>
<div>
<router-view />
</div>
</template>
<script lang="ts" setup></script>
<style scoped></style>

View File

@ -1,8 +0,0 @@
<template>
<div>
<router-view />
</div>
</template>
<script lang="ts" setup></script>
<style scoped></style>

View File

@ -0,0 +1,15 @@
<template>
<n-layout has-sider>
<n-layout-sider />
<n-layout>
<n-layout-header></n-layout-header>
<n-layout-content>
<router-view />
</n-layout-content>
<n-layout-footer></n-layout-footer>
</n-layout>
</n-layout>
</template>
<script lang="ts" setup></script>
<style scoped></style>

View File

@ -1,3 +1,3 @@
import BasicLayout from './BasicLayout.vue';
import BasicLayout from './BasicLayout/index.vue';
export { BasicLayout };