Nuxt/test/fixtures/basic/pages/with-layout2.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>