工欲善其事必先利其器

This commit is contained in:
2024-06-17 21:16:49 +08:00
parent 89baf6b8e4
commit 619530eb18
7 changed files with 79 additions and 129 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div id="app">
<div class="flex">
<menu/>
<apps-nav/>
<router-view class="fill"/>
</div>
</div>
@@ -12,7 +12,16 @@ html, body, #app {
width: 100vw;
height: 100vh;
margin: 0;
overflow: hidden;
}
</style>
<script setup>
<script>
import AppsNav from "@/components/appsNav.vue";
export default {
name: "App",
components: {AppsNav},
}
</script>