Files
kengee-data-screen/src/App.vue

28 lines
369 B
Vue
Raw Normal View History

2024-05-22 17:03:33 +08:00
<template>
<div id="app">
2024-06-17 18:20:13 +08:00
<div class="flex">
2024-06-17 21:16:49 +08:00
<apps-nav/>
2024-06-17 18:20:13 +08:00
<router-view class="fill"/>
</div>
2024-05-22 17:03:33 +08:00
</div>
</template>
2024-06-17 18:20:13 +08:00
<style>
html, body, #app {
width: 100vw;
height: 100vh;
margin: 0;
2024-06-17 21:16:49 +08:00
overflow: hidden;
2024-05-22 17:03:33 +08:00
}
</style>
2024-06-17 21:16:49 +08:00
<script>
import AppsNav from "@/components/appsNav.vue";
export default {
name: "App",
components: {AppsNav},
}
2024-06-17 18:20:13 +08:00
</script>