mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
17 lines
351 B
Vue
17 lines
351 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="/users-2">Lists of users #2 (with `watch`)</nuxt-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
head: {
|
|
title: 'Home'
|
|
}
|
|
}
|
|
</script>
|