mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
19 lines
267 B
Vue
19 lines
267 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>
|