Nuxt/test/fixtures/page-mount-with-layouts/pages/page-2.vue

23 lines
286 B
Vue

<template>
<div>
<h2>Page 2</h2>
<NuxtLink
id="link"
to="/page-1"
>
To page 1
</NuxtLink>
</div>
</template>
<script>
export default {
layout: 'layout-2',
mounted () {
window.mountedCount = (window.mountedCount || 0) + 1
}
}
</script>