mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
16 lines
209 B
Vue
16 lines
209 B
Vue
<template>
|
|
<main>
|
|
<Nuxt />
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/* LAYOUT CSS */
|
|
main {
|
|
border: 1px solid grey;
|
|
border-radius: 8px;
|
|
padding: 2rem;
|
|
}
|
|
/* END OF LAYOUT CSS */
|
|
</style>
|