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

34 lines
447 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-07-05 17:36:16 +08:00
<router-view class="components"/>
2024-06-17 18:20:13 +08:00
</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
}
2024-06-17 23:18:11 +08:00
2024-07-05 17:36:16 +08:00
#app > .flex {
height: 100%;
}
2024-06-17 23:18:11 +08:00
.components {
background: #07193D;
}
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>