Rendering a Page

You can render a Nuxt page by using the <NuxtPage> component.

You have to put it in the app.vue file:

<template>
  <div>
    <NuxtPage />
  </div>
</template>

It will be able to inspect the current path and render the corresponding page in your pages folder.