mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
c1ddb359e3
Co-authored-by: Damian Głowala <damian.glowala.rebkow@gmail.com>
19 lines
266 B
Vue
19 lines
266 B
Vue
<script setup>
|
|
definePageMeta({
|
|
layoutTransition: false
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<NuxtLayout
|
|
name="with-props"
|
|
some-prop="some prop was passed"
|
|
>
|
|
<div>
|
|
some page content
|
|
</div>
|
|
</NuxtLayout>
|
|
</div>
|
|
</template>
|