mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
18 lines
329 B
Vue
18 lines
329 B
Vue
<template>
|
|
<div class="content">
|
|
<h1 class="title">
|
|
Custom CSS!
|
|
</h1>
|
|
<p>
|
|
<NuxtLink to="/about" class="button is-medium is-primary hvr-float-shadow">
|
|
I am a button
|
|
</NuxtLink>
|
|
</p>
|
|
<p>
|
|
<NuxtLink to="/about">
|
|
About page
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</template>
|