Layout for the App

You can set up a layout to be shared between the pages of your app.

Use the <NuxtLayout> component in the app.vue file:

<template>
  <NuxtLayout>
    <NuxtPage />
  <NuxtLayout>
</template>

Then it will find the component in layouts/default.vue and render that as the layout.