mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
13 lines
203 B
Vue
13 lines
203 B
Vue
<script setup>
|
|
definePageMeta({
|
|
layout: 'custom2'
|
|
})
|
|
|
|
console.log('Running With Layout2 Page Setup')
|
|
</script>
|
|
<template>
|
|
<div id="with-layout2">
|
|
<div>with-layout2.vue</div>
|
|
</div>
|
|
</template>
|