mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
11 lines
409 B
Vue
11 lines
409 B
Vue
<template>
|
|
<div class="container">
|
|
<h1>Home page</h1>
|
|
<p><nuxt-link to="/about">About page</nuxt-link></p>
|
|
<p><nuxt-link to="/users">Lists of users</nuxt-link></p>
|
|
<p><nuxt-link to="/long">Long page</nuxt-link></p>
|
|
<p><nuxt-link to="/long#anchor">Long page #anchor</nuxt-link></p>
|
|
<div class="spacer" style="width: 100%; height: 3000px; background: grey"></div>
|
|
</div>
|
|
</template>
|