18 lines
231 B
Vue
18 lines
231 B
Vue
<template>
|
|
<div>
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Root app component
|
|
</script>
|
|
|
|
<style>
|
|
/* Global styles */
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
</style> |