初步完成第一个

This commit is contained in:
2024-06-17 23:18:11 +08:00
parent 48da2f12f6
commit 4366ba42bf
5 changed files with 92 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
<div id="app">
<div class="flex">
<apps-nav/>
<router-view class="fill"/>
<router-view class="fill components"/>
</div>
</div>
</template>
@@ -14,6 +14,10 @@ html, body, #app {
margin: 0;
overflow: hidden;
}
.components {
background: #07193D;
}
</style>
<script>
import AppsNav from "@/components/appsNav.vue";
@@ -21,7 +25,5 @@ import AppsNav from "@/components/appsNav.vue";
export default {
name: "App",
components: {AppsNav},
}
</script>