mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
18 lines
320 B
Vue
18 lines
320 B
Vue
<template>
|
|
<div class="content">
|
|
<h1 class="title">
|
|
Another Page
|
|
</h1>
|
|
<p>
|
|
<NuxtLink to="/" class="button is-medium is-info hvr-wobble-vertical">
|
|
Another button
|
|
</NuxtLink>
|
|
</p>
|
|
<p>
|
|
<NuxtLink to="/">
|
|
Back home
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</template>
|