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

19 lines
241 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">
<menu/>
<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-05-22 17:03:33 +08:00
}
</style>
2024-06-17 18:20:13 +08:00
<script setup>
</script>