19 lines
293 B
Vue
19 lines
293 B
Vue
<script setup>
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|
|
|
|
<template>
|
|
<main class="wrapper"> <RouterView /> </main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.wrapper {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background-color: #0a254b;
|
|
}
|
|
|
|
</style>
|