mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
14 lines
204 B
Vue
14 lines
204 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>
|