1
0
Fork 0
moritzruth.de/src/App.vue
2021-12-18 15:44:33 +01:00

25 lines
444 B
Vue

<template>
<div class="h-100vh w-100vw text-light-100 overflow-x-hidden">
<router-view v-slot="{ Component }">
<suspense>
<component :is="Component"/>
</suspense>
</router-view>
</div>
</template>
<style module>
html, body {
@apply bg-background;
overflow-x: hidden;
width: 100vw;
min-height: 100vh;
font-size: 17px;
}
</style>
<script>
export default {
name: "App"
}
</script>