ruoyi-plus-soybean/src/layouts/BasicLayout/index.vue

16 lines
331 B
Vue
Raw Normal View History

2021-08-26 18:49:20 +08:00
<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>