feat(projects): 头部添加菜单折叠按钮和github地址

This commit is contained in:
Soybean
2021-09-15 08:14:17 +08:00
parent 3226a724be
commit 3ec1fc8f0c
10 changed files with 73 additions and 19 deletions

View File

@ -2,14 +2,12 @@
<div class="p-10px">
<data-card :loading="loading" />
<nav-card :loading="loading" />
<router-link :to="EnumRoutePath['dashboard-workbench']">workbench</router-link>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { DataCard, NavCard } from './components';
import { EnumRoutePath } from '@/enum';
const loading = ref(true);