mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
20 lines
297 B
Vue
20 lines
297 B
Vue
<template>
|
|
<div class="container">
|
|
<img src="nuxt.png">
|
|
<h2>Hello World.</h2>
|
|
<p>
|
|
<NuxtLink to="/about">
|
|
About
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container {
|
|
font-family: sans-serif;
|
|
margin-top: 200px;
|
|
text-align: center;
|
|
}
|
|
</style>
|