feat(projects): 细节完善、迁移页面

This commit is contained in:
Soybean
2022-01-20 21:24:01 +08:00
parent 28efbdbc70
commit ce531ce5dd
26 changed files with 1114 additions and 225 deletions

View File

@@ -0,0 +1,10 @@
<template>
<div class="h-full">
<n-card title="多级菜单 - 三级菜单" class="h-full shadow-sm rounded-16px"></n-card>
</div>
</template>
<script setup lang="ts">
import { NCard } from 'naive-ui';
</script>
<style scoped></style>

View File

@@ -1,6 +1,10 @@
<template>
<div>多级菜单</div>
<div class="h-full">
<n-card title="多级菜单 - 二级菜单" class="h-full shadow-sm rounded-16px"></n-card>
</div>
</template>
<script setup lang="ts"></script>
<script setup lang="ts">
import { NCard } from 'naive-ui';
</script>
<style scoped></style>

View File

@@ -1,3 +1,4 @@
const MultiMenuFirstSecond = () => import('./first/second/index.vue');
const MultiMenuFirstSecondNewThird = () => import('./first/second-new/third/index.vue');
export { MultiMenuFirstSecond };
export { MultiMenuFirstSecond, MultiMenuFirstSecondNewThird };