NuxtN
Nuxt3y ago
hartmut

render specific page without default 'layout' (using app.vue, not /layouts)?

Hi, I'd like to render a specific page without being wrapped in my 'layout', defined in app.vue.
I tried following without success... surely this should be doable somehow?
<script setup lang="ts">
definePageMeta({ layout: false })
</script>

<template>
  <div>
    Test
  </div>
</template>
Was this page helpful?