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