Nuxt/examples/routing/layouts/pages/default.vue

10 lines
160 B
Vue
Raw Normal View History

2021-06-30 16:32:22 +00:00
<template>
<div>
<p>Content inside <code>default</code> layout</p>
<br>
2021-06-30 16:32:22 +00:00
<NuxtLink to="/">
Back to home
</NuxtLink>
</div>
</template>